| Total Complexity | 5 |
| Total Lines | 34 |
| Duplicated Lines | 0 % |
| Coverage | 45.45% |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | class FileSystemLoader extends BaseFileSystemLoader |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var string[] |
||
| 14 | */ |
||
| 15 | private $rootPaths; |
||
| 16 | |||
| 17 | public function __construct( |
||
| 26 | } |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Strips root directory from the start of a file path |
||
| 30 | * @param null|string $filePath |
||
| 31 | * @return null|string |
||
| 32 | */ |
||
| 33 | 1 | public function getImaginePath(?string $filePath = null): ?string |
|
| 46 |