Completed
Pull Request — master (#1872)
by
unknown
10:08 queued 51s
created
src/Module.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -220,7 +220,7 @@  discard block
 block discarded – undo
220 220
             $file = 'module.json';
221 221
         }
222 222
 
223
-        return Arr::get($this->moduleJson, $file, function () use ($file) {
223
+        return Arr::get($this->moduleJson, $file, function() use ($file) {
224 224
             return $this->moduleJson[$file] = new Json($this->getPath().'/'.$file, $this->files);
225 225
         });
226 226
     }
@@ -329,7 +329,7 @@  discard block
 block discarded – undo
329 329
      */
330 330
     public function isDisabled(): bool
331 331
     {
332
-        return ! $this->isEnabled();
332
+        return !$this->isEnabled();
333 333
     }
334 334
 
335 335
     /**
@@ -391,7 +391,7 @@  discard block
 block discarded – undo
391 391
     {
392 392
         return config('modules.register.files', 'register') === 'boot' &&
393 393
             // force register method if option == boot && app is AsgardCms
394
-            ! class_exists('\Modules\Core\Foundation\AsgardCms');
394
+            !class_exists('\Modules\Core\Foundation\AsgardCms');
395 395
     }
396 396
 
397 397
     private function flushCache(): void
Please login to merge, or discard this patch.