Total Complexity | 2 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
30 | class RevManifestStrategy extends AssetStrategy |
||
31 | { |
||
32 | /** |
||
33 | * @inheritDoc |
||
34 | */ |
||
35 | protected array $_defaultConfig = [ |
||
36 | 'manifestPath' => WWW_ROOT . 'rev-manifest.json', |
||
37 | ]; |
||
38 | |||
39 | /** |
||
40 | * @inheritDoc |
||
41 | */ |
||
42 | public function get(string $name, ?string $extension = null): array|string|null |
||
51 |