| Total Complexity | 2 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Changes | 9 | ||
| Bugs | 2 | Features | 0 |
| 1 | <?php |
||
| 9 | class AnyCloudFactory implements FactoryInterface |
||
| 10 | { |
||
| 11 | const SERVICE_NAMES = [ |
||
| 12 | 'aws' => Store\Aws::class, |
||
| 13 | 'azure' => Store\Azure::class, |
||
| 14 | 'digital_ocean' => Store\DigitalOcean::class, |
||
| 15 | 'dropbox' => Store\Dropbox::class, |
||
| 16 | 'google' => Store\Google::class, |
||
| 17 | 'scaleway' => Store\Scaleway::class, |
||
| 18 | 'wasabi' => Store\Wasabi::class, |
||
| 19 | ]; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @param ContainerInterface $serviceLocator |
||
| 23 | * @param string $requestedName |
||
| 24 | * @param array|null $options |
||
| 25 | * |
||
| 26 | * @return \Omeka\File\Store\StoreInterface |
||
| 27 | */ |
||
| 28 | public function __invoke(ContainerInterface $serviceLocator, $requestedName, array $options = null) |
||
| 41 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths