cms.combiner.getCacheKey

Triggered in System\Classes\CombineAssets.

Provides an opportunity to modify the asset combiner's cache key

Example usage:

Event::listen('cms.combiner.getCacheKey', function ((\System\Classes\CombineAssets) $assetCombiner, &$cacheKey) {
    $cacheKey = rand();
});