Conditions | 4 |
Paths | 3 |
Total Lines | 11 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 4 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | |||
18 | 7 | public function __construct(Container $app) |
|
19 | { |
||
20 | 7 | $this->storage = new FilesystemStorage($app['files'], $app['config']->get('geonames.storage.path')); |
|
21 | 7 | } |
|
22 | |||
23 | /** |
||
24 | * Dynamically forward call. |
||
25 | * |
||
26 | * @param string $method |
||
27 | * @param array $parameters |
||
28 | * @return mixed |
||
52 |