Completed
Pull Request — master (#1619)
by
unknown
08:14
created
src/Migrations/Migrator.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -99,9 +99,9 @@  discard block
 block discarded – undo
99 99
     public function getMigrations($reverse = false)
100 100
     {
101 101
         if (!empty($this->subpath)) {
102
-            $files = $this->laravel['files']->glob($this->getPath() . '/' . $this->subpath);
102
+            $files = $this->laravel['files']->glob($this->getPath().'/'.$this->subpath);
103 103
         } else {
104
-            $files = $this->laravel['files']->glob($this->getPath() . '/*_*.php');
104
+            $files = $this->laravel['files']->glob($this->getPath().'/*_*.php');
105 105
         }
106 106
 
107 107
         // Once we have the array of files in the directory we will just remove the
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
             return [];
112 112
         }
113 113
 
114
-        $files = array_map(function ($file) {
114
+        $files = array_map(function($file) {
115 115
             return str_replace('.php', '', basename($file));
116 116
         }, $files);
117 117
 
@@ -216,8 +216,8 @@  discard block
 block discarded – undo
216 216
 
217 217
         $class = Str::studly($name);
218 218
 
219
-        if (!class_exists($class) && file_exists($this->getPath() . '/' . $file . '.php')) {
220
-            return include $this->getPath() . '/' . $file . '.php';
219
+        if (!class_exists($class) && file_exists($this->getPath().'/'.$file.'.php')) {
220
+            return include $this->getPath().'/'.$file.'.php';
221 221
         }
222 222
 
223 223
         return new $class();
@@ -232,7 +232,7 @@  discard block
 block discarded – undo
232 232
     {
233 233
         $path = $this->getPath();
234 234
         foreach ($files as $file) {
235
-            $this->laravel['files']->requireOnce($path . '/' . $file . '.php');
235
+            $this->laravel['files']->requireOnce($path.'/'.$file.'.php');
236 236
         }
237 237
     }
238 238
 
@@ -315,7 +315,7 @@  discard block
 block discarded – undo
315 315
 
316 316
         $result = $query->orderBy('migration', 'desc')->get();
317 317
 
318
-        return collect($result)->map(function ($item) {
318
+        return collect($result)->map(function($item) {
319 319
             return (array) $item;
320 320
         })->pluck('migration');
321 321
     }
Please login to merge, or discard this patch.