Passed
Push — master ( 6b7698...dec09d )
by Mike
02:55
created
src/Console/Commands/Publish.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
         if ($this->option('config')) {
16 16
             $this->call('vendor:publish', [
17 17
                 '--provider' => Service::class,
18
-                '--tag' => ['config'],
18
+                '--tag' => [ 'config' ],
19 19
                 '--force' => true,
20 20
             ]);
21 21
         }
Please login to merge, or discard this patch.
src/Providers/Service.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,11 +14,11 @@
 block discarded – undo
14 14
             ], 'config');
15 15
 
16 16
             config([
17
-                'app.editor' => function ($file, $line) {
17
+                'app.editor' => function($file, $line) {
18 18
                     $homestead = rtrim(config('genealabs-laravel-whoops-atom.homestead-sites-path'), '/');
19 19
                     $local = rtrim(config('genealabs-laravel-whoops-atom.local-sites-path'), '/');
20 20
 
21
-                    if (! $local) {
21
+                    if (!$local) {
22 22
                         return '';
23 23
                     }
24 24
 
Please login to merge, or discard this patch.