Test Failed
Push — master ( 36dba6...5ee5cd )
by Antonio Carlos
04:08
created
src/Checkers/MixManifest.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -17,17 +17,17 @@
 block discarded – undo
17 17
      */
18 18
     public function check()
19 19
     {
20
-         $this->checkFilePresence($file =$this->getManifestFileName());
20
+            $this->checkFilePresence($file =$this->getManifestFileName());
21 21
 
22
-         $loaded = $this->loadJson($file);
22
+            $loaded = $this->loadJson($file);
23 23
 
24
-         foreach ($loaded as $item => $asset) {
25
-             if (!$this->ignored($item)) {
26
-                 $this->checkFilePresence(base_path($this->target->assetsRoot.$asset));
27
-             }
28
-         }
24
+            foreach ($loaded as $item => $asset) {
25
+                if (!$this->ignored($item)) {
26
+                    $this->checkFilePresence(base_path($this->target->assetsRoot.$asset));
27
+                }
28
+            }
29 29
 
30
-         return $this->makeHealthyResult();
30
+            return $this->makeHealthyResult();
31 31
     }
32 32
 
33 33
     /**
Please login to merge, or discard this patch.