@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | */ |
63 | 63 | public function isUpMode() |
64 | 64 | { |
65 | - return ! $this->maintenanceFileExists(); |
|
65 | + return !$this->maintenanceFileExists(); |
|
66 | 66 | } |
67 | 67 | |
68 | 68 | /** |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | { |
76 | 76 | $file = $this->maintenanceFilePath(); |
77 | 77 | |
78 | - if (! touch($file)) { |
|
78 | + if (!touch($file)) { |
|
79 | 79 | $message = sprintf( |
80 | 80 | 'Something went wrong on trying to create maintenance file %s.', |
81 | 81 | $file |
@@ -97,7 +97,7 @@ discard block |
||
97 | 97 | { |
98 | 98 | $file = $this->maintenanceFilePath(); |
99 | 99 | |
100 | - if (file_exists($file) && ! unlink($file)) { |
|
100 | + if (file_exists($file) && !unlink($file)) { |
|
101 | 101 | $message = sprintf( |
102 | 102 | 'Something went wrong on trying to remove maintenance file %s.', |
103 | 103 | $file |