Completed
Push — master ( 1d2285...c11be3 )
by Sergi Tur
40:25 queued 10:23
created
src/Console/MakeView.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -53,11 +53,11 @@  discard block
 block discarded – undo
53 53
     {
54 54
         try {
55 55
             $this->filesystem->make(
56
-                $path = resource_path('views/' . $this->viewPath()),
56
+                $path = resource_path('views/'.$this->viewPath()),
57 57
                 $this->filesystem->get($this->getStubPath()),
58 58
                 true
59 59
             );
60
-            $this->info('File ' . $path . ' created');
60
+            $this->info('File '.$path.' created');
61 61
         } catch (\Exception $e) {
62 62
             $this->error($e->getMessage());
63 63
         }
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
      */
69 69
     protected function getStubPath()
70 70
     {
71
-        return __DIR__ . '/stubs/view.blade.php';
71
+        return __DIR__.'/stubs/view.blade.php';
72 72
     }
73 73
 
74 74
     /**
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
      */
90 90
     protected function constructViewBladeName($name)
91 91
     {
92
-        return $this->dottedPathToSlashesPath($name) . '.blade.php';
92
+        return $this->dottedPathToSlashesPath($name).'.blade.php';
93 93
     }
94 94
 
95 95
     /**
Please login to merge, or discard this patch.