| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 26 | public function createService(ServiceLocatorInterface $services) |
||
| 27 | { |
||
| 28 | return StorageFactory::factory([ |
||
| 29 | 'adapter' => [ |
||
| 30 | 'name' => 'filesystem', |
||
| 31 | 'options' => [ |
||
| 32 | 'namespace' => 'webinodraw', |
||
| 33 | 'cacheDir' => 'data/cache', |
||
| 34 | 'dirPermission' => false, |
||
| 35 | 'filePermission' => false, |
||
| 36 | 'umask' => 7, |
||
| 37 | ], |
||
| 38 | ], |
||
| 39 | ]); |
||
| 40 | } |
||
| 41 | } |
||
| 42 |