| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 38 | public function getEncoreEntryCssSource(string $entryName): string |
||
| 39 | { |
||
| 40 | $files = $this->container |
||
| 41 | ->get(EntrypointLookupInterface::class) |
||
| 42 | ->getCssFiles($entryName); |
||
| 43 | |||
| 44 | $source = ''; |
||
| 45 | foreach ($files as $file) { |
||
| 46 | $source .= file_get_contents($this->publicDir.'/'.$file); |
||
| 47 | } |
||
| 48 | |||
| 49 | return $source; |
||
| 50 | } |
||
| 59 |