| Total Complexity | 5 |
| Total Lines | 36 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | class GeoDataImporter |
||
| 16 | { |
||
| 17 | protected FilesystemStorage $storage; |
||
| 18 | |||
| 19 | 16 | public function __construct(Container $app) |
|
| 22 | 16 | } |
|
| 23 | |||
| 24 | /** |
||
| 25 | * Dynamically forward call. |
||
| 26 | * |
||
| 27 | * @param string $method |
||
| 28 | * @param array $parameters |
||
| 29 | * @return mixed |
||
| 30 | */ |
||
| 31 | 15 | public function __call($method, $parameters) |
|
| 41 | } |
||
| 42 | |||
| 43 | /** |
||
| 44 | * Get current storage instance. |
||
| 45 | * |
||
| 46 | * @return FilesystemStorage |
||
| 47 | */ |
||
| 48 | 1 | public function storage(): FilesystemStorage |
|
| 53 |