| Total Complexity | 2 |
| Total Lines | 29 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 18 | class LocalSystemResolver extends AbstractAdapterResolver |
||
| 19 | { |
||
| 20 | protected const FILE_SYSTEM_INFO_CLASS = LocalInfo::class; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @var FileSystemInfoInterface|LocalInfo |
||
| 24 | */ |
||
| 25 | protected $fsInfo; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @param string $uri |
||
| 29 | * @param array $options |
||
| 30 | * |
||
| 31 | * @return string |
||
| 32 | * |
||
| 33 | * @throws ResolveException |
||
| 34 | */ |
||
| 35 | public function buildUrl(string $uri, array $options = []) |
||
| 50 |