
| Current Path : /var/www/html/rocksensor/web/core/lib/Drupal/Core/Asset/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/rocksensor/web/core/lib/Drupal/Core/Asset/AssetQueryStringInterface.php |
<?php
declare(strict_types=1);
namespace Drupal\Core\Asset;
/**
* Provides a cache busting query string service for asset URLs.
*/
interface AssetQueryStringInterface {
/**
* Resets the cache query string added to all CSS and JavaScript URLs.
*
* Changing the cache query string appended to CSS and JavaScript URLs forces
* all browsers to fetch fresh files.
*/
public function reset(): void;
/**
* Gets the query string value.
*/
public function get(): string;
}