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
Pull Request — 2.4 (#144)
by Alessandro
02:44
created
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.
src/Mado/QueryBundle/Queries/OrFilterFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
         $this->fields = $fields;
30 30
         $this->conditions = '';
31 31
         $this->parameters = [];
32
-        $this->parser  = new StringParser();
32
+        $this->parser = new StringParser();
33 33
     }
34 34
 
35 35
     public function createFilter(array $orFilters)
Please login to merge, or discard this patch.
src/Mado/QueryBundle/Queries/QueryBuilderFactory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -152,11 +152,11 @@
 block discarded – undo
152 152
             $parameters = $andFilterFactory->getParameters();
153 153
             $innerJoins = $andFilterFactory->getInnerJoin();
154 154
 
155
-            foreach($conditions as $condition) {
155
+            foreach ($conditions as $condition) {
156 156
                 $this->qBuilder->andWhere($condition);
157 157
             }
158 158
 
159
-            foreach($parameters as $parameter) {
159
+            foreach ($parameters as $parameter) {
160 160
                 $this->qBuilder->setParameter($parameter['field'], $parameter['value']);
161 161
             }
162 162
 
Please login to merge, or discard this patch.