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 ( 981176...6b393e )
by Anderson
18s
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   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -294,7 +294,7 @@  discard block
 block discarded – undo
294 294
         
295 295
         $queryParams = array_replace_recursive([
296 296
             'size' => self::DEFAULT_MAX_RESULTS
297
-        ], array_filter($queryParams, function ($value) {
297
+        ], array_filter($queryParams, function($value) {
298 298
             return $value !== null;
299 299
         }));
300 300
 
@@ -306,7 +306,7 @@  discard block
 block discarded – undo
306 306
 
307 307
         $url = "$index/$type/_search?" . http_build_query($queryParams);
308 308
 
309
-        $cleanQuery = function ($queryPart, callable $recusiveFn) {
309
+        $cleanQuery = function($queryPart, callable $recusiveFn) {
310 310
             if (!is_array($queryPart)) {
311 311
                 return $queryPart;
312 312
             }
Please login to merge, or discard this patch.