| Total Complexity | 1 |
| Total Lines | 13 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | class RequestServiceProvider implements ServiceProviderInterface |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * Registers services on the given container. |
||
| 22 | * This method should only be used to configure services and parameters. |
||
| 23 | * It should not get services. |
||
| 24 | * |
||
| 25 | * @param \Pimple\Container $pimple A container instance |
||
| 26 | */ |
||
| 27 | public function register(Container $pimple) |
||
| 34 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.