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