Total Complexity | 2 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
4 | class MigrationStatus |
||
5 | { |
||
6 | const MIGRATION_STATUS_WAIT = 0; |
||
7 | const MIGRATION_STATUS_RUNNING = 1; |
||
8 | const MIGRATION_STATUS_DONE = 2; |
||
9 | const MIGRATION_STATUS_ERROR = 3; |
||
10 | |||
11 | /** |
||
12 | * Is migration status valid |
||
13 | * |
||
14 | * @param int $status |
||
15 | * @return bool |
||
16 | */ |
||
17 | 27 | public function isMigrationStatusValid(int $status) : bool |
|
33 |