Completed
Push — master ( 6cca5d...2a6fe0 )
by Nicolas
11s
created
src/FileRepository.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
             $paths = array_merge($paths, $this->config('scan.paths'));
107 107
         }
108 108
 
109
-        $paths = array_map(function ($path) {
109
+        $paths = array_map(function($path) {
110 110
             return ends_with($path, '/*') ? $path : str_finish($path, '/*');
111 111
         }, $paths);
112 112
 
@@ -190,7 +190,7 @@  discard block
 block discarded – undo
190 190
      */
191 191
     public function getCached()
192 192
     {
193
-        return $this->app['cache']->remember($this->config('cache.key'), $this->config('cache.lifetime'), function () {
193
+        return $this->app['cache']->remember($this->config('cache.key'), $this->config('cache.lifetime'), function() {
194 194
             return $this->toCollection()->toArray();
195 195
         });
196 196
     }
@@ -278,7 +278,7 @@  discard block
 block discarded – undo
278 278
     {
279 279
         $modules = $this->allEnabled();
280 280
 
281
-        uasort($modules, function (Module $a, Module $b) use ($direction) {
281
+        uasort($modules, function(Module $a, Module $b) use ($direction) {
282 282
             if ($a->order == $b->order) {
283 283
                 return 0;
284 284
             }
@@ -428,9 +428,9 @@  discard block
 block discarded – undo
428 428
     public function getModulePath($module)
429 429
     {
430 430
         try {
431
-            return $this->findOrFail($module)->getPath() . '/';
431
+            return $this->findOrFail($module)->getPath().'/';
432 432
         } catch (ModuleNotFoundException $e) {
433
-            return $this->getPath() . '/' . Str::studly($module) . '/';
433
+            return $this->getPath().'/'.Str::studly($module).'/';
434 434
         }
435 435
     }
436 436
 
@@ -443,7 +443,7 @@  discard block
 block discarded – undo
443 443
      */
444 444
     public function assetPath($module) : string
445 445
     {
446
-        return $this->config('paths.assets') . '/' . $module;
446
+        return $this->config('paths.assets').'/'.$module;
447 447
     }
448 448
 
449 449
     /**
@@ -456,7 +456,7 @@  discard block
 block discarded – undo
456 456
      */
457 457
     public function config($key, $default = null)
458 458
     {
459
-        return $this->app['config']->get('modules.' . $key, $default);
459
+        return $this->app['config']->get('modules.'.$key, $default);
460 460
     }
461 461
 
462 462
     /**
@@ -557,9 +557,9 @@  discard block
 block discarded – undo
557 557
         }
558 558
         list($name, $url) = explode(':', $asset);
559 559
 
560
-        $baseUrl = str_replace(public_path() . DIRECTORY_SEPARATOR, '', $this->getAssetsPath());
560
+        $baseUrl = str_replace(public_path().DIRECTORY_SEPARATOR, '', $this->getAssetsPath());
561 561
 
562
-        $url = $this->app['url']->asset($baseUrl . "/{$name}/" . $url);
562
+        $url = $this->app['url']->asset($baseUrl."/{$name}/".$url);
563 563
 
564 564
         return str_replace(['http://', 'https://'], '//', $url);
565 565
     }
Please login to merge, or discard this patch.
src/Commands/ProviderMakeCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
         /** @var Module $module */
76 76
         $module = $this->laravel['modules']->findOrFail($this->getModuleName());
77 77
 
78
-        return (new Stub('/' . $stub . '.stub', [
78
+        return (new Stub('/'.$stub.'.stub', [
79 79
             'NAMESPACE'         => $this->getClassNamespace($module),
80 80
             'CLASS'             => $this->getClass(),
81 81
             'LOWER_NAME'        => $module->getLowerName(),
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
 
101 101
         $generatorPath = GenerateConfigReader::read('provider');
102 102
 
103
-        return $path . $generatorPath->getPath() . '/' . $this->getFileName() . '.php';
103
+        return $path.$generatorPath->getPath().'/'.$this->getFileName().'.php';
104 104
     }
105 105
 
106 106
     /**
Please login to merge, or discard this patch.
src/Commands/SeedCommand.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
         $name = $module->getName();
98 98
         $config = $module->get('migration');
99 99
         if (is_array($config) && array_key_exists('seeds', $config)) {
100
-            foreach ((array)$config['seeds'] as $class) {
100
+            foreach ((array) $config['seeds'] as $class) {
101 101
                 if (class_exists($class)) {
102 102
                     $seeders[] = $class;
103 103
                 }
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
     protected function dbSeed($className)
124 124
     {
125 125
         if ($option = $this->option('class')) {
126
-            $params['--class'] = Str::finish(substr($className, 0, strrpos($className, '\\')), '\\') . $option;
126
+            $params['--class'] = Str::finish(substr($className, 0, strrpos($className, '\\')), '\\').$option;
127 127
         } else {
128 128
             $params = ['--class' => $className];
129 129
         }
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
         $seederPath = GenerateConfigReader::read('seeder');
155 155
         $seederPath = str_replace('/', '\\', $seederPath->getPath());
156 156
 
157
-        return $namespace . '\\' . $name . '\\' . $seederPath . '\\' . $name . 'DatabaseSeeder';
157
+        return $namespace.'\\'.$name.'\\'.$seederPath.'\\'.$name.'DatabaseSeeder';
158 158
     }
159 159
 
160 160
     /**
Please login to merge, or discard this patch.