Passed
Push — master ( 940892...273383 )
by Mohammad
04:50
created
src/Commands/Generator.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
      */
56 56
     public function handle()
57 57
     {
58
-        $file = explode("/", (string)$this->argument('name'));
58
+        $file = explode("/", (string) $this->argument('name'));
59 59
 
60 60
         $this->repoName = $file[count($file) - 1];
61 61
         unset($file[count($file) - 1]);
@@ -65,11 +65,11 @@  discard block
 block discarded – undo
65 65
             $this->repoNamespace = '';
66 66
         } else {
67 67
             $this->repoNamespace = $file[count($file) - 1];
68
-            $this->repoNamespace = "\\".implode("\\", $file);
68
+            $this->repoNamespace = "\\" . implode("\\", $file);
69 69
         }
70
-        $model= str_plural(\Config::get('repository.model'));
71
-        $interface= str_plural(\Config::get('repository.interface'));
72
-        $repository= str_plural(\Config::get('repository.repository'));
70
+        $model = str_plural(\Config::get('repository.model'));
71
+        $interface = str_plural(\Config::get('repository.interface'));
72
+        $repository = str_plural(\Config::get('repository.repository'));
73 73
 
74 74
         $this->generate($path, \Config::get('repository.controllers_path'), 'Controller');
75 75
         $this->generate($path, $model, 'Entity');
@@ -111,10 +111,10 @@  discard block
 block discarded – undo
111 111
             $this->getStub($type)
112 112
         );
113 113
         $filePath = $this->checkFolder(\Config::get('repository.app_path') . "/{$folder}/{$path}/");
114
-        if($type == 'Entity')
114
+        if ($type == 'Entity')
115 115
         {
116 116
             file_put_contents($filePath . "{$this->repoName}.php", $template);
117
-        }else
117
+        } else
118 118
         {
119 119
             file_put_contents($filePath . "{$this->repoName}{$type}.php", $template);
120 120
         }
Please login to merge, or discard this patch.