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 Setup Failed
Pull Request — master (#101)
by Simone
07:58 queued 04:29
created
src/Mado/QueryBundle/Queries/QueryBuilderFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -429,7 +429,7 @@
 block discarded – undo
429 429
             if (in_array($fieldName, $this->fields)) {
430 430
                 $direction = ($val === self::DIRECTION_AZ) ? self::DIRECTION_AZ : self::DIRECTION_ZA;
431 431
                 $this->ensureQueryBuilderIsDefined();
432
-                $this->qBuilder->addOrderBy($this->entityAlias .'.'. $fieldName, $direction);
432
+                $this->qBuilder->addOrderBy($this->entityAlias . '.' . $fieldName, $direction);
433 433
             }
434 434
 
435 435
             if (strstr($sort, '_embedded.')) {
Please login to merge, or discard this patch.
src/Mado/QueryBundle/Repositories/BaseRepository.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
         $this->fields = array_keys($this->getClassMetadata()->fieldMappings);
42 42
 
43 43
         $entityName = explode('\\', strtolower($this->getEntityName()));
44
-        $entityName = $entityName[count($entityName)-1];
44
+        $entityName = $entityName[count($entityName) - 1];
45 45
         $entityAlias = $entityName[0];
46 46
         $this->entityAlias = $entityAlias;
47 47
 
@@ -273,7 +273,7 @@  discard block
 block discarded – undo
273 273
         $pagerAdapter = new DoctrineORMAdapter($queryBuilder);
274 274
 
275 275
         $query = $pagerAdapter->getQuery();
276
-        if (null != $this->use_result_cache && $this->use_result_cache){
276
+        if (null != $this->use_result_cache && $this->use_result_cache) {
277 277
             $query->useResultCache(true, 600);
278 278
         }
279 279
 
@@ -309,7 +309,7 @@  discard block
 block discarded – undo
309 309
             $params[$itemValue] = $this->queryOptions->get($itemValue);
310 310
         }
311 311
 
312
-        if (!isset($this->route_name)){
312
+        if (!isset($this->route_name)) {
313 313
             $this->route_name = $this->queryOptions->get('_route');
314 314
         }
315 315
 
Please login to merge, or discard this patch.