Conditions | 2 |
Paths | 2 |
Total Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
29 | public function actionOn(): int |
||
30 | 1 | { |
|
31 | 1 | $this->stdout("Trying enabling maintenance mode...\n"); |
|
32 | $file = $this->resolveFile(); |
||
33 | 1 | ||
34 | 1 | if (!file_exists($file)) { |
|
35 | 1 | file_put_contents($file, time()); |
|
36 | 1 | $this->stdout("Done\n", Console::FG_GREEN); |
|
37 | return ExitCode::OK; |
||
38 | 1 | } |
|
39 | 1 | ||
40 | $this->stdout("Application is already in maintenance mode.\n", Console::FG_YELLOW); |
||
41 | return ExitCode::USAGE; |
||
42 | } |
||
43 | |||
54 |