Total Complexity | 3 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 3 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | class MigrationConfig extends BaseConfig |
||
16 | { |
||
17 | protected $directory = '@root/migrations'; |
||
18 | protected $namespace = 'App\\Migration'; |
||
19 | protected $table = 'migration'; |
||
20 | protected $safe = false; |
||
21 | |||
22 | /** @var Aliases */ |
||
23 | private $objAliases; |
||
24 | |||
25 | public function __construct(Params $params, Aliases $aliases) |
||
26 | { |
||
27 | $this->objAliases = $aliases; |
||
28 | parent::__construct($params); |
||
29 | } |
||
30 | |||
31 | protected function getDirectory(): string |
||
34 | } |
||
35 | |||
36 | protected function getAlias(string $alias): string |
||
41 |