Test Setup Failed
Branch master (ed297f)
by Giuliano
10:07
created
src/Providers/LoadThemesServiceProvider.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,9 @@
 block discarded – undo
18 18
     {
19 19
         $theme = $this->base()->current();
20 20
 
21
-        if ($theme == null) return false;
21
+        if ($theme == null) {
22
+            return false;
23
+        }
22 24
 
23 25
         return $theme->load();
24 26
     }
Please login to merge, or discard this patch.
src/Providers/RegistersCustomDirectiveProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
      */
24 24
     protected function registerPublic()
25 25
     {
26
-        Blade::directive('public', function ($file) {
26
+        Blade::directive('public', function($file) {
27 27
             $file   = str_replace("'", "", $file);
28 28
             $domain = $this->base()->current()->public();
29 29
             return "$domain/$file";
Please login to merge, or discard this patch.
src/Console/InitThemeCommand.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -60,9 +60,9 @@
 block discarded – undo
60 60
             }
61 61
 
62 62
             $this->theme($theme)
63
-                 ->author($author)
64
-                 ->description($desc)
65
-                 ->build();
63
+                    ->author($author)
64
+                    ->description($desc)
65
+                    ->build();
66 66
 
67 67
             $this->base()->clearCache();
68 68
 
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
             $desc = $this->askDescription();   
56 56
             $cmd->description($desc);
57 57
             
58
-            if (! $this->beSure($theme, $author, $desc)) {
58
+            if (!$this->beSure($theme, $author, $desc)) {
59 59
                 return false;
60 60
             }
61 61
 
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
     {
123 123
         $answer = $this->ask($question->ask);
124 124
 
125
-        return (! $answer || empty($answer)) ? $question->default : $answer;
125
+        return (!$answer || empty($answer)) ? $question->default : $answer;
126 126
     } 
127 127
 
128 128
     /**
Please login to merge, or discard this patch.
src/Console/MakeComponentCommand.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -50,8 +50,8 @@
 block discarded – undo
50 50
             $args = $this->getArguments();
51 51
 
52 52
             $component = $this->theme($args->theme)
53
-                              ->component($args->name)
54
-                              ->create();
53
+                                ->component($args->name)
54
+                                ->create();
55 55
 
56 56
             $this->base()->clearCache();
57 57
 
Please login to merge, or discard this patch.