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