| Total Complexity | 2 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | abstract class AbstractCube |
||
| 8 | { |
||
| 9 | |||
| 10 | /** |
||
| 11 | * @param $definitions |
||
| 12 | * |
||
| 13 | * @return void |
||
| 14 | */ |
||
| 15 | abstract public function registerDependencies(array &$definitions); |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @return array [sort => migration class] |
||
| 19 | */ |
||
| 20 | public function getMigrations(): array |
||
| 21 | { |
||
| 22 | return []; |
||
| 23 | } |
||
| 24 | |||
| 25 | /** |
||
| 26 | */ |
||
| 27 | public function bootstrap(ContainerInterface $container) |
||
| 29 | } |
||
| 30 | } |
||
| 31 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.