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.
Completed
Push — master ( 05e8ba...49de94 )
by Anderson
07:01
created
src/ElasticUnitOfWork.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -337,7 +337,7 @@
 block discarded – undo
337 337
     }
338 338
 
339 339
     public function delete($entity) {
340
-        if(!is_object($entity)){
340
+        if (!is_object($entity)) {
341 341
             throw new InvalidArgumentException('Trying to schedule a non object to delete');
342 342
         }
343 343
 
Please login to merge, or discard this patch.
src/Query/ElasticWalker.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -133,6 +133,6 @@
 block discarded – undo
133 133
         /** @var Field[] $fields */
134 134
         $fields = (new AnnotationEntityHydrator())->extractSpecAnnotations($className, Field::class);
135 135
 
136
-        return isset($fields[$propertyName]) ? $fields[$propertyName]: null;
136
+        return isset($fields[$propertyName]) ? $fields[$propertyName] : null;
137 137
     }
138 138
 }
Please login to merge, or discard this patch.
src/Connection/ElasticConnection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -299,7 +299,7 @@
 block discarded – undo
299 299
 
300 300
         $url = "$index/$type/_search?" . http_build_query($queryParams);
301 301
 
302
-        $cleanQuery = function ($queryPart, callable $recusiveFn) {
302
+        $cleanQuery = function($queryPart, callable $recusiveFn) {
303 303
             if (!is_array($queryPart)) {
304 304
                 return $queryPart;
305 305
             }
Please login to merge, or discard this patch.