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.
Test Failed
Push — feature/refactor_and_or_filter ( c1b18b )
by Alessandro
05:08
created
src/Mado/QueryBundle/Queries/QueryBuilderFactory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -205,11 +205,11 @@
 block discarded – undo
205 205
             $innerJoins = $andFilterFactory->getInnerJoin();
206 206
             $leftJoins = $andFilterFactory->getLeftJoin();
207 207
 
208
-            foreach($conditions as $condition) {
208
+            foreach ($conditions as $condition) {
209 209
                 $this->qBuilder->andWhere($condition);
210 210
             }
211 211
 
212
-            foreach($parameters as $parameter) {
212
+            foreach ($parameters as $parameter) {
213 213
                 $this->qBuilder->setParameter($parameter['field'], $parameter['value']);
214 214
             }
215 215
 
Please login to merge, or discard this patch.
src/Mado/QueryBundle/Queries/AndFilterFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
         $this->fields = $fields;
27 27
         $this->conditions = [];
28 28
         $this->parameters = [];
29
-        $this->parser  = new StringParser();
29
+        $this->parser = new StringParser();
30 30
         $this->joinFactory = $joinFactory;
31 31
     }
32 32
 
Please login to merge, or discard this patch.