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