GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Passed
Push — master ( bc33c3...4f0198 )
by Mehdi
11:09
created
src/ServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
     private function configurePaths()
32 32
     {
33 33
         $this->publishes([
34
-            __DIR__ . '/config/config.php' => config_path('eloquentFilter.php'),
34
+            __DIR__.'/config/config.php' => config_path('eloquentFilter.php'),
35 35
         ]);
36 36
     }
37 37
 
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
     private function mergeConfig()
42 42
     {
43 43
         $this->mergeConfigFrom(
44
-            __DIR__ . '/config/config.php',
44
+            __DIR__.'/config/config.php',
45 45
             'eloquentFilter'
46 46
         );
47 47
     }
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
     {
54 54
         $this->app->singleton(
55 55
             'eloquentFilter',
56
-            function () {
56
+            function() {
57 57
                 $queryFilterCoreFactory = new QueryFilterCoreFactory();
58 58
 
59 59
                 $request = new RequestFilter($this->app->get('request')->query());
Please login to merge, or discard this patch.