Passed
Push — master ( 040c30...9ca3f0 )
by Jorijn
03:22
created
src/ServiceProvider.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
      */
19 19
     public function register()
20 20
     {
21
-        $configPath = __DIR__ . '/../config/laravel-security-checker.php';
21
+        $configPath = __DIR__.'/../config/laravel-security-checker.php';
22 22
         $this->mergeConfigFrom($configPath, 'laravel-security-checker');
23 23
     }
24 24
 
@@ -29,8 +29,8 @@  discard block
 block discarded – undo
29 29
      */
30 30
     public function boot()
31 31
     {
32
-        $configPath = __DIR__ . '/../config/laravel-security-checker.php';
33
-        $this->publishes([$configPath => $this->getConfigPath()], 'config');
32
+        $configPath = __DIR__.'/../config/laravel-security-checker.php';
33
+        $this->publishes([ $configPath => $this->getConfigPath() ], 'config');
34 34
     }
35 35
 
36 36
     /**
@@ -50,6 +50,6 @@  discard block
 block discarded – undo
50 50
      */
51 51
     protected function publishConfig($configPath)
52 52
     {
53
-        $this->publishes([$configPath => config_path('laravel-security-checker.php')], 'config');
53
+        $this->publishes([ $configPath => config_path('laravel-security-checker.php') ], 'config');
54 54
     }
55 55
 }
Please login to merge, or discard this patch.