| Total Complexity | 3 |
| Total Lines | 43 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | class BraintreeDependencyProvider extends AbstractBundleDependencyProvider |
||
| 15 | { |
||
| 16 | public const PLUGIN_CURRENCY = 'PLUGIN_CURRENCY'; |
||
| 17 | public const CLIENT_QUOTE = 'QUOTE_CLIENT'; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param \Spryker\Yves\Kernel\Container $container |
||
| 21 | * |
||
| 22 | * @return \Spryker\Yves\Kernel\Container|\Spryker\Zed\Kernel\Container |
||
| 23 | */ |
||
| 24 | public function provideDependencies(Container $container) |
||
| 29 | } |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @param \Spryker\Yves\Kernel\Container $container |
||
| 33 | * |
||
| 34 | * @return \Spryker\Yves\Kernel\Container |
||
| 35 | */ |
||
| 36 | protected function addCurrencyPlugin(Container $container) |
||
| 43 | } |
||
| 44 | |||
| 45 | /** |
||
| 46 | * @param \Spryker\Yves\Kernel\Container $container |
||
| 47 | * |
||
| 48 | * @return \Spryker\Yves\Kernel\Container |
||
| 49 | */ |
||
| 50 | protected function addQuoteClinet(Container $container): Container |
||
| 59 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.