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
Branch fix-php-version (5ea9c4)
by Simone
07:23 queued 04:52
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
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
         $this->fields = array_keys($this->getClassMetadata()->fieldMappings);
41 41
 
42 42
         $entityName = explode('\\', strtolower($this->getEntityName()));
43
-        $entityName = $entityName[count($entityName)-1];
43
+        $entityName = $entityName[count($entityName) - 1];
44 44
         $entityAlias = $entityName[0];
45 45
         $this->entityAlias = $entityAlias;
46 46
 
@@ -278,7 +278,7 @@  discard block
 block discarded – undo
278 278
         $pagerAdapter = new DoctrineORMAdapter($queryBuilder);
279 279
 
280 280
         $query = $pagerAdapter->getQuery();
281
-        if (isset($this->use_result_cache) and $this->use_result_cache){
281
+        if (isset($this->use_result_cache) and $this->use_result_cache) {
282 282
             $query->useResultCache(true, 600);
283 283
         }
284 284
 
@@ -317,7 +317,7 @@  discard block
 block discarded – undo
317 317
             $params[$itemValue] = $this->queryOptions->get($itemValue);
318 318
         }
319 319
 
320
-        if (!isset($this->route_name)){
320
+        if (!isset($this->route_name)) {
321 321
             $this->route_name = $this->queryOptions->get('_route');
322 322
         }
323 323
 
Please login to merge, or discard this patch.