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 ( 32a39d...bc33c3 )
by Mehdi
10:41
created
src/QueryFilter/Core/FilterBuilder/QueryFilterBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -112,7 +112,7 @@
 block discarded – undo
112 112
     private function resolveDetections()
113 113
     {
114 114
         /** @see ResolverDetections */
115
-        app()->bind('ResolverDetections', function () {
115
+        app()->bind('ResolverDetections', function() {
116 116
             return new ResolverDetections($this->queryBuilderWrapper->getBuilder(), $this->requestFilter->getRequest(), $this->queryFilterCore->getDetectFactory());
117 117
         });
118 118
 
Please login to merge, or discard this patch.
src/ServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
     private function configurePaths()
38 38
     {
39 39
         $this->publishes([
40
-            __DIR__ . '/config/config.php' => config_path('eloquentFilter.php'),
40
+            __DIR__.'/config/config.php' => config_path('eloquentFilter.php'),
41 41
         ]);
42 42
     }
43 43
 
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
     private function mergeConfig()
48 48
     {
49 49
         $this->mergeConfigFrom(
50
-            __DIR__ . '/config/config.php',
50
+            __DIR__.'/config/config.php',
51 51
             'eloquentFilter'
52 52
         );
53 53
     }
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
         if (config('eloquentFilter.enabled')) {
61 61
             $this->app->singleton(
62 62
                 'eloquentFilter',
63
-                function () {
63
+                function() {
64 64
                     $queryFilterCoreFactory = new QueryFilterCoreFactory();
65 65
 
66 66
                     $request = new RequestFilter($this->app->get('request')->query());
Please login to merge, or discard this patch.