Completed
Pull Request — master (#790)
by
unknown
03:36 queued 42s
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
     }
@@ -288,7 +288,7 @@  discard block
 block discarded – undo
288 288
     {
289 289
         $modules = $this->allEnabled();
290 290
 
291
-        uasort($modules, function (Module $a, Module $b) use ($direction) {
291
+        uasort($modules, function(Module $a, Module $b) use ($direction) {
292 292
             if ($a->order == $b->order) {
293 293
                 return 0;
294 294
             }
@@ -427,9 +427,9 @@  discard block
 block discarded – undo
427 427
     public function getModulePath($module)
428 428
     {
429 429
         try {
430
-            return $this->findOrFail($module)->getPath() . '/';
430
+            return $this->findOrFail($module)->getPath().'/';
431 431
         } catch (ModuleNotFoundException $e) {
432
-            return $this->getPath() . '/' . Str::studly($module) . '/';
432
+            return $this->getPath().'/'.Str::studly($module).'/';
433 433
         }
434 434
     }
435 435
 
@@ -442,7 +442,7 @@  discard block
 block discarded – undo
442 442
      */
443 443
     public function assetPath($module) : string
444 444
     {
445
-        return $this->config('paths.assets') . '/' . $module;
445
+        return $this->config('paths.assets').'/'.$module;
446 446
     }
447 447
 
448 448
     /**
@@ -450,7 +450,7 @@  discard block
 block discarded – undo
450 450
      */
451 451
     public function config(string $key, $default = null)
452 452
     {
453
-        return $this->config->get('modules.' . $key, $default);
453
+        return $this->config->get('modules.'.$key, $default);
454 454
     }
455 455
 
456 456
     /**
@@ -540,9 +540,9 @@  discard block
 block discarded – undo
540 540
         }
541 541
         list($name, $url) = explode(':', $asset);
542 542
 
543
-        $baseUrl = str_replace(public_path() . DIRECTORY_SEPARATOR, '', $this->getAssetsPath());
543
+        $baseUrl = str_replace(public_path().DIRECTORY_SEPARATOR, '', $this->getAssetsPath());
544 544
 
545
-        $url = $this->url->asset($baseUrl . "/{$name}/" . $url);
545
+        $url = $this->url->asset($baseUrl."/{$name}/".$url);
546 546
 
547 547
         return str_replace(['http://', 'https://'], '//', $url);
548 548
     }
Please login to merge, or discard this patch.
src/LaravelModulesServiceProvider.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -31,9 +31,9 @@  discard block
 block discarded – undo
31 31
      */
32 32
     public function setupStubPath()
33 33
     {
34
-        Stub::setBasePath(__DIR__ . '/Commands/stubs');
34
+        Stub::setBasePath(__DIR__.'/Commands/stubs');
35 35
 
36
-        $this->app->booted(function ($app) {
36
+        $this->app->booted(function($app) {
37 37
             /** @var RepositoryInterface $moduleRepository */
38 38
             $moduleRepository = $app[RepositoryInterface::class];
39 39
             if ($moduleRepository->config('stubs.enabled') === true) {
@@ -47,14 +47,14 @@  discard block
 block discarded – undo
47 47
      */
48 48
     protected function registerServices()
49 49
     {
50
-        $this->app->singleton(Contracts\RepositoryInterface::class, function ($app) {
50
+        $this->app->singleton(Contracts\RepositoryInterface::class, function($app) {
51 51
             $path = $app['config']->get('modules.paths.modules');
52 52
 
53 53
             return new Laravel\LaravelFileRepository($app, $path);
54 54
         });
55
-        $this->app->singleton(Contracts\ActivatorInterface::class, function ($app) {
55
+        $this->app->singleton(Contracts\ActivatorInterface::class, function($app) {
56 56
             $activator = $app['config']->get('modules.activator');
57
-            $class = $app['config']->get('modules.activators.' . $activator)['class'];
57
+            $class = $app['config']->get('modules.activators.'.$activator)['class'];
58 58
 
59 59
             return new $class($app);
60 60
         });
Please login to merge, or discard this patch.
src/Activators/FileActivator.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -75,9 +75,9 @@  discard block
 block discarded – undo
75 75
 	 */
76 76
 	private function getModulesStatuses()
77 77
 	{
78
-		if(!$this->config->get('modules.cache.enabled')) return $this->readJson();
78
+		if (!$this->config->get('modules.cache.enabled')) return $this->readJson();
79 79
 		
80
-		return $this->cache->remember($this->cacheKey, $this->cacheLifetime, function () {
80
+		return $this->cache->remember($this->cacheKey, $this->cacheLifetime, function() {
81 81
             return $this->readJson();
82 82
         });
83 83
 	}
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
 	 */
100 100
 	private function config(string $key, $default = null)
101 101
     {
102
-        return $this->config->get('modules.activators.file.' . $key, $default);
102
+        return $this->config->get('modules.activators.file.'.$key, $default);
103 103
     }
104 104
 
105 105
 	/**
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
 	 */
110 110
 	private function readJson()
111 111
 	{
112
-		if(!$this->files->exists($this->statusesFile)) return [];
112
+		if (!$this->files->exists($this->statusesFile)) return [];
113 113
 		return json_decode($this->files->get($this->statusesFile), true);
114 114
 	}
115 115
 
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
 	 */
137 137
 	public function reset()
138 138
 	{
139
-		if($this->files->exists($this->statusesFile)){
139
+		if ($this->files->exists($this->statusesFile)) {
140 140
 			$this->files->delete($this->statusesFile);
141 141
 		}
142 142
 		$this->modulesStatuses = [];
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
      */
165 165
     public function isStatus(Module $module, bool $status): bool
166 166
     {
167
-    	if(!isset($this->modulesStatuses[$module->getName()])){
167
+    	if (!isset($this->modulesStatuses[$module->getName()])) {
168 168
     		return $status === false;
169 169
     	}
170 170
     	return $this->modulesStatuses[$module->getName()] === $status;
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
      */
194 194
     public function delete(Module $module)
195 195
     {
196
-    	if(!isset($this->modulesStatuses[$module->getName()])) return;
196
+    	if (!isset($this->modulesStatuses[$module->getName()])) return;
197 197
     	unset($this->modulesStatuses[$module->getName()]);
198 198
     	$this->writeJson();
199 199
     	$this->flushCache();
Please login to merge, or discard this patch.
src/LumenModulesServiceProvider.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
      */
32 32
     public function setupStubPath()
33 33
     {
34
-        Stub::setBasePath(__DIR__ . '/Commands/stubs');
34
+        Stub::setBasePath(__DIR__.'/Commands/stubs');
35 35
 
36 36
         if (app('modules')->config('stubs.enabled') === true) {
37 37
             Stub::setBasePath(app('modules')->config('stubs.path'));
@@ -43,14 +43,14 @@  discard block
 block discarded – undo
43 43
      */
44 44
     protected function registerServices()
45 45
     {
46
-        $this->app->singleton(Contracts\RepositoryInterface::class, function ($app) {
46
+        $this->app->singleton(Contracts\RepositoryInterface::class, function($app) {
47 47
             $path = $app['config']->get('modules.paths.modules');
48 48
 
49 49
             return new Lumen\LumenFileRepository($app, $path);
50 50
         });
51
-        $this->app->singleton(Contracts\ActivatorInterface::class, function ($app) {
51
+        $this->app->singleton(Contracts\ActivatorInterface::class, function($app) {
52 52
             $activator = $app['config']->get('modules.activator');
53
-            $class = $app['config']->get('modules.activators.' . $activator)['class'];
53
+            $class = $app['config']->get('modules.activators.'.$activator)['class'];
54 54
 
55 55
             return new $class($app);
56 56
         });
Please login to merge, or discard this patch.