Completed
Push — master ( 558b51...5e20ba )
by Prateek
03:47
created
src/LaragenServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
     public function boot()
12 12
     {
13 13
         $this->publishes([
14
-            __DIR__ . '/../config/laragen.php' => config_path('laragen.php')
14
+            __DIR__.'/../config/laragen.php' => config_path('laragen.php')
15 15
         ], 'laragen-config');
16 16
     }
17 17
     /**
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
     public function register()
21 21
     {
22 22
         $this->mergeConfigFrom(
23
-            __DIR__ . '/../config/laragen.php', 
23
+            __DIR__.'/../config/laragen.php', 
24 24
             'laragen'
25 25
         );
26 26
     }
Please login to merge, or discard this patch.
src/Commands/Laragen.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
 
43 43
     protected function getStub($type)
44 44
     {
45
-        return file_get_contents(__DIR__ . "/../resources/stubs/$type.stub"));
45
+        return file_get_contents(__DIR__."/../resources/stubs/$type.stub"));
46 46
     }
47 47
 
48 48
     protected function model($name)
Please login to merge, or discard this patch.