| Total Complexity | 2 |
| Total Lines | 32 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 22 | class Plugin extends BasePlugin |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * @var string |
||
| 26 | */ |
||
| 27 | protected $name = 'Burzum/CakeServiceLayer'; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @var bool |
||
| 31 | */ |
||
| 32 | protected $routesEnabled = false; |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @var bool |
||
| 36 | */ |
||
| 37 | protected $middlewareEnabled = false; |
||
| 38 | |||
| 39 | /** |
||
| 40 | * Add migrations commands. |
||
| 41 | * |
||
| 42 | * @param \Cake\Console\CommandCollection $collection The command collection to update |
||
| 43 | * @return \Cake\Console\CommandCollection |
||
| 44 | */ |
||
| 45 | public function console(CommandCollection $collection): CommandCollection |
||
| 56 |