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 — 2.4 ( 1151b7...e8e282 )
by Alessandro
35s queued 10s
created
src/Mado/QueryBundle/Queries/AndFilter.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
 
29 29
         $this->conditions = [];
30 30
         $this->parameters = [];
31
-        $this->parser  = new StringParser();
31
+        $this->parser = new StringParser();
32 32
     }
33 33
 
34 34
     public function createFilter(array $andFilters)
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
                 . $filterObject->getOperatorMeta();
115 115
 
116 116
             if ($filterObject->isListContainsType()) {
117
-                $fieldName =  $this->relationEntityAlias . '.' . $embeddedFieldName;
117
+                $fieldName = $this->relationEntityAlias . '.' . $embeddedFieldName;
118 118
                 $whereCondition = $this->createWhereConditionForListContains($value, $fieldName, $embeddedFieldName, $salt);
119 119
             } elseif ($filterObject->isListType()) {
120 120
                 $whereCondition .= ' (:field_' . $embeddedFieldName . $salt . ')';
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
             if ($whereCondition == '') {
171 171
                 $whereCondition = ' (';
172 172
             } else {
173
-                $whereCondition .=  ' OR ';
173
+                $whereCondition .= ' OR ';
174 174
             }
175 175
 
176 176
             $whereCondition .= $fieldName .
Please login to merge, or discard this patch.