Passed
Push — master ( 4d78b1...b38d7a )
by Mike
09:03 queued 06:33
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   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -15,11 +15,11 @@  discard block
 block discarded – undo
15 15
         ], 'config');
16 16
 
17 17
         config([
18
-            'app.editor' => function ($file, $line) {
18
+            'app.editor' => function($file, $line) {
19 19
                 $homestead = rtrim(config('genealabs-laravel-whoops-atom.homestead-sites-path'), '/');
20 20
                 $local = rtrim(config('genealabs-laravel-whoops-atom.local-sites-path'), '/');
21 21
 
22
-                if (! $local) {
22
+                if (!$local) {
23 23
                     return '';
24 24
                 }
25 25
 
@@ -41,6 +41,6 @@  discard block
 block discarded – undo
41 41
 
42 42
     public function provides() : array
43 43
     {
44
-        return ['genealabs-laravel-whoops-atom'];
44
+        return [ 'genealabs-laravel-whoops-atom' ];
45 45
     }
46 46
 }
Please login to merge, or discard this patch.