Completed
Pull Request — master (#1941)
by
unknown
09:37
created
src/Activators/FileActivator.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
      */
89 89
     public function hasStatus(Module $module, bool $status): bool
90 90
     {
91
-        if (! isset($this->modulesStatuses[$module->getName()])) {
91
+        if (!isset($this->modulesStatuses[$module->getName()])) {
92 92
             return $status === false;
93 93
         }
94 94
 
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
      */
118 118
     public function delete(Module $module): void
119 119
     {
120
-        if (! isset($this->modulesStatuses[$module->getName()])) {
120
+        if (!isset($this->modulesStatuses[$module->getName()])) {
121 121
             return;
122 122
         }
123 123
         unset($this->modulesStatuses[$module->getName()]);
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
      */
140 140
     private function readJson(): array
141 141
     {
142
-        if (! $this->files->exists($this->statusesFile)) {
142
+        if (!$this->files->exists($this->statusesFile)) {
143 143
             return [];
144 144
         }
145 145
 
Please login to merge, or discard this patch.