Completed
Push — master ( 06eaec...869e7c )
by Sergi Tur
02:54
created
src/Console/AdminLTERoute.php 2 patches
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
         $tmpfile = $this->createTmpFileWithRoute();
98 98
         $path = $this->getPath($tmpfile);
99 99
         add_file_into_file($this->mountpoint(), $path, $dstFile = $this->destinationFile());
100
-        $this->info('Route ' . $link . ' added to ' .  $dstFile . '.');
100
+        $this->info('Route '.$link.' added to '.$dstFile.'.');
101 101
         $this->postActions();
102 102
     }
103 103
 
@@ -167,7 +167,7 @@  discard block
 block discarded – undo
167 167
         $link = $this->removeTrailingSlashIfExists($link);
168 168
         $link = $this->removeDuplicatedTrailingSlashes($link);
169 169
         foreach (Route::getRoutes() as $value) {
170
-            if (in_array(strtoupper($this->option('method')), array_merge($value->getMethods(), ['ANY'])) &&
170
+            if (in_array(strtoupper($this->option('method')), array_merge($value->getMethods(), [ 'ANY' ])) &&
171 171
                 $value->getPath() === $link) {
172 172
                 return true;
173 173
             }
@@ -208,7 +208,7 @@  discard block
 block discarded – undo
208 208
      */
209 209
     protected function apiRouteExists($link)
210 210
     {
211
-        return $this->webRouteExists('api/v1/' . $link);
211
+        return $this->webRouteExists('api/v1/'.$link);
212 212
     }
213 213
 
214 214
     /**
@@ -231,7 +231,7 @@  discard block
 block discarded – undo
231 231
      */
232 232
     protected function getPath($tmpfile)
233 233
     {
234
-        return stream_get_meta_data($tmpfile)['uri'];
234
+        return stream_get_meta_data($tmpfile)[ 'uri' ];
235 235
     }
236 236
 
237 237
     /**
@@ -242,8 +242,8 @@  discard block
 block discarded – undo
242 242
     protected function getRouteCode()
243 243
     {
244 244
         $type = $this->option('type');
245
-        $class = isset(static::$lookup[$type])
246
-            ? static::$lookup[$type]
245
+        $class = isset(static::$lookup[ $type ])
246
+            ? static::$lookup[ $type ]
247 247
             : RegularRoute::class;
248 248
         /** @var GeneratesCode $route */
249 249
         $route = new $class($this->compiler, $this->filesystem);
@@ -278,7 +278,7 @@  discard block
 block discarded – undo
278 278
         if ($this->argument('action') != null) {
279 279
             return $this->argument('action');
280 280
         }
281
-        if (strtolower($this->option('type')) != 'regular' ) return $this->argument('link') . 'Controller';
281
+        if (strtolower($this->option('type')) != 'regular') return $this->argument('link').'Controller';
282 282
         return $this->argument('link');
283 283
     }
284 284
 
@@ -296,7 +296,7 @@  discard block
 block discarded – undo
296 296
      */
297 297
     protected function validateMethod()
298 298
     {
299
-        if (! in_array(strtoupper($this->option('method')), $methods = array_merge(Router::$verbs, ['ANY']))) {
299
+        if (!in_array(strtoupper($this->option('method')), $methods = array_merge(Router::$verbs, [ 'ANY' ]))) {
300 300
             throw new MethodNotAllowedException($methods);
301 301
         }
302 302
     }
@@ -306,7 +306,7 @@  discard block
 block discarded – undo
306 306
      */
307 307
     protected function validateType()
308 308
     {
309
-        if (! in_array(strtolower($this->option('type')), ['regular','controller','resource'])) {
309
+        if (!in_array(strtolower($this->option('type')), [ 'regular', 'controller', 'resource' ])) {
310 310
             throw new RouteTypeNotValid();
311 311
         }
312 312
     }
@@ -343,7 +343,7 @@  discard block
 block discarded – undo
343 343
         Artisan::call('make:view', [
344 344
             'name' => $this->action()
345 345
         ]);
346
-        $this->info('View ' . $this->action() .'.blade.php created.');
346
+        $this->info('View '.$this->action().'.blade.php created.');
347 347
     }
348 348
 
349 349
     /**
@@ -355,7 +355,7 @@  discard block
 block discarded – undo
355 355
             'name' => $controller = $this->controllerWithoutMethod($this->action())
356 356
         ]);
357 357
         $this->addMethodToController($controller, $this->controllerMethod($this->action()));
358
-        $this->info('Controller ' . $controller .' created.');
358
+        $this->info('Controller '.$controller.' created.');
359 359
     }
360 360
 
361 361
     /**
@@ -367,7 +367,7 @@  discard block
 block discarded – undo
367 367
             'name' => $controller = $this->controllerWithoutMethod($this->action()),
368 368
             '--resource' => true
369 369
         ]);
370
-        $this->info('Resource Controller ' . $controller .' created.');
370
+        $this->info('Resource Controller '.$controller.' created.');
371 371
     }
372 372
 
373 373
     /**
@@ -380,7 +380,7 @@  discard block
 block discarded – undo
380 380
     {
381 381
         $tmpfile = $this->createTmpFileWithMethod($controllerMethod);
382 382
         $path = $this->getPath($tmpfile);
383
-        add_file_into_file('\/\/', $path, app_path('Http/Controllers/' . $controller . '.php'));
383
+        add_file_into_file('\/\/', $path, app_path('Http/Controllers/'.$controller.'.php'));
384 384
     }
385 385
 
386 386
     /**
@@ -419,6 +419,6 @@  discard block
 block discarded – undo
419 419
      */
420 420
     protected function getMethodStubPath()
421 421
     {
422
-        return __DIR__ . '/stubs/method.stub';
422
+        return __DIR__.'/stubs/method.stub';
423 423
     }
424 424
 }
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -278,7 +278,9 @@
 block discarded – undo
278 278
         if ($this->argument('action') != null) {
279 279
             return $this->argument('action');
280 280
         }
281
-        if (strtolower($this->option('type')) != 'regular' ) return $this->argument('link') . 'Controller';
281
+        if (strtolower($this->option('type')) != 'regular' ) {
282
+            return $this->argument('link') . 'Controller';
283
+        }
282 284
         return $this->argument('link');
283 285
     }
284 286
 
Please login to merge, or discard this patch.