| Total Complexity | 2 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | class FlysystemDependencyProvider extends SprykerFlysystemDependencyProvider |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @param \Spryker\Service\Kernel\Container $container |
||
| 19 | * |
||
| 20 | * @return \Spryker\Service\Kernel\Container |
||
| 21 | */ |
||
| 22 | protected function addFilesystemBuilderPluginCollection($container): Container |
||
| 23 | { |
||
| 24 | $container->set(static::PLUGIN_COLLECTION_FILESYSTEM_BUILDER, function (Container $container) { |
||
|
|
|||
| 25 | return $this->getFilesystemBuilderPluginCollection(); |
||
| 26 | }); |
||
| 27 | |||
| 28 | return $container; |
||
| 29 | } |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @return array<\Spryker\Service\Flysystem\Dependency\Plugin\FlysystemFilesystemBuilderPluginInterface> |
||
| 33 | */ |
||
| 34 | protected function getFilesystemBuilderPluginCollection(): array |
||
| 39 | ]; |
||
| 40 | } |
||
| 42 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.