Completed
Push — master ( 65003a...6f5491 )
by Nicolas
03:55
created
src/FileRepository.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
             $paths = array_merge($paths, $this->config('scan.paths'));
117 117
         }
118 118
 
119
-        $paths = array_map(function ($path) {
119
+        $paths = array_map(function($path) {
120 120
             return Str::endsWith($path, '/*') ? $path : Str::finish($path, '/*');
121 121
         }, $paths);
122 122
 
@@ -200,7 +200,7 @@  discard block
 block discarded – undo
200 200
      */
201 201
     public function getCached()
202 202
     {
203
-        return $this->cache->remember($this->config('cache.key'), $this->config('cache.lifetime'), function () {
203
+        return $this->cache->remember($this->config('cache.key'), $this->config('cache.lifetime'), function() {
204 204
             return $this->toCollection()->toArray();
205 205
         });
206 206
     }
@@ -289,7 +289,7 @@  discard block
 block discarded – undo
289 289
     {
290 290
         $modules = $this->allEnabled();
291 291
 
292
-        uasort($modules, function (Module $a, Module $b) use ($direction) {
292
+        uasort($modules, function(Module $a, Module $b) use ($direction) {
293 293
             if ($a->get('order') === $b->get('order')) {
294 294
                 return 0;
295 295
             }
@@ -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
     /**
@@ -451,7 +451,7 @@  discard block
 block discarded – undo
451 451
      */
452 452
     public function config(string $key, $default = null)
453 453
     {
454
-        return $this->config->get('modules.' . $key, $default);
454
+        return $this->config->get('modules.'.$key, $default);
455 455
     }
456 456
 
457 457
     /**
@@ -541,9 +541,9 @@  discard block
 block discarded – undo
541 541
         }
542 542
         list($name, $url) = explode(':', $asset);
543 543
 
544
-        $baseUrl = str_replace(public_path() . DIRECTORY_SEPARATOR, '', $this->getAssetsPath());
544
+        $baseUrl = str_replace(public_path().DIRECTORY_SEPARATOR, '', $this->getAssetsPath());
545 545
 
546
-        $url = $this->url->asset($baseUrl . "/{$name}/" . $url);
546
+        $url = $this->url->asset($baseUrl."/{$name}/".$url);
547 547
 
548 548
         return str_replace(['http://', 'https://'], '//', $url);
549 549
     }
Please login to merge, or discard this patch.