Completed
Push — master ( f86420...ded220 )
by Iman
02:11
created
src/WidgetGenerator.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -51,14 +51,14 @@  discard block
 block discarded – undo
51 51
         $path = $this->_getViewPath();
52 52
 
53 53
         if ($this->files->exists($path)) {
54
-            $this->error($this->qualifyClass($this->getNameInput())."View.blade.php - Already exists! (@_@)");
54
+            $this->error($this->qualifyClass($this->getNameInput()) . "View.blade.php - Already exists! (@_@)");
55 55
 
56 56
             return;
57 57
         }
58 58
 
59 59
         $this->files->put($path, $this->_getViewStub());
60 60
 
61
-        $this->info(' - '.$this->qualifyClass($this->getNameInput())."View.blade.php - was created. (^_^)");
61
+        $this->info(' - ' . $this->qualifyClass($this->getNameInput()) . "View.blade.php - was created. (^_^)");
62 62
     }
63 63
 
64 64
     /**
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
         // to create the class and overwrite the user's code. So, we will bail out so the
123 123
         // code is untouched. Otherwise, we will continue generating this class' files.
124 124
         if ($this->alreadyExists($this->getNameInput())) {
125
-            $this->error($this->qualifyClass($this->getNameInput()).".php - Already exists (@_@)");
125
+            $this->error($this->qualifyClass($this->getNameInput()) . ".php - Already exists (@_@)");
126 126
 
127 127
             return false;
128 128
         }
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
 
135 135
         $this->files->put($path, $this->buildClass($name));
136 136
 
137
-        $this->info(' - '.$name.'.php - was created.  (^_^)');
137
+        $this->info(' - ' . $name . '.php - was created.  (^_^)');
138 138
     }
139 139
 
140 140
     /**
Please login to merge, or discard this patch.