Total Complexity | 4 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
8 | class DoctrineMigrationCheck extends AbstractCheck |
||
9 | { |
||
10 | private DependencyFactory $dependencyFactory; |
||
11 | |||
12 | public function __construct(string $label, DependencyFactory $dependencyFactory) |
||
13 | { |
||
14 | parent::__construct($label); |
||
15 | $this->dependencyFactory = $dependencyFactory; |
||
16 | } |
||
17 | |||
18 | public function checkStatus(): Result |
||
33 | } |
||
34 | } |