| Total Complexity | 4 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | class WebpackEntryCssSourceExtension extends AbstractExtension { |
||
| 12 | |||
| 13 | public function __construct(private readonly EntrypointLookupInterface $entrypointLookup, private readonly string $publicDir) { |
||
| 14 | |||
| 15 | } |
||
| 16 | |||
| 17 | public function getFunctions() { |
||
| 20 | ]; |
||
| 21 | } |
||
| 22 | |||
| 23 | public function getCssSource(string $entryName): string { |
||
| 32 | } |
||
| 33 | } |