Completed
Push — master ( 4f8ab3...bc0824 )
by Sergi Tur
09:20
created
src/Console/MakeView.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -44,10 +44,10 @@  discard block
 block discarded – undo
44 44
     {
45 45
         try {
46 46
             $this->filesystem->overwrite(
47
-                $path = resource_path('views/' . $this->viewPath()),
47
+                $path = resource_path('views/'.$this->viewPath()),
48 48
                 $this->filesystem->get($this->getStubPath())
49 49
             );
50
-            $this->info('File ' . $path . ' created');
50
+            $this->info('File '.$path.' created');
51 51
         } catch (\Exception $e) {
52 52
             print_r($e->getMessage());
53 53
         }
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
      */
59 59
     protected function getStubPath()
60 60
     {
61
-        return __DIR__ . '/stubs/view.stub';
61
+        return __DIR__.'/stubs/view.stub';
62 62
     }
63 63
 
64 64
     /**
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
      */
79 79
     protected function constructViewBaldeName($name)
80 80
     {
81
-        return $this->dottedPathToSlahesPath($name) . '.blade.php';
81
+        return $this->dottedPathToSlahesPath($name).'.blade.php';
82 82
     }
83 83
 
84 84
     /**
Please login to merge, or discard this patch.