Scrutinizer GitHub App not installed

We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.

Install GitHub App

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
Branch master (82b7d7)
by Sebastian
03:28 queued 53s
created
plugins/basket/class.tx_dlf_basket.php 1 patch
Upper-Lower-Casing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
 
74 74
             $GLOBALS['TSFE']->fe_user->setKey('ses', 'tx_dlf_basket', '');
75 75
 
76
-            $GLOBALS['TSFE']->fe_user->sesData_change = true;
76
+            $GLOBALS['TSFE']->fe_user->sesData_change = TRUE;
77 77
 
78 78
             $GLOBALS['TSFE']->fe_user->storeSessionData();
79 79
 
@@ -412,7 +412,7 @@  discard block
 block discarded – undo
412 412
 
413 413
         }
414 414
 
415
-        if ($page != null || $_piVars['addToBasket'] == 'list') {
415
+        if ($page != NULL || $_piVars['addToBasket'] == 'list') {
416 416
 
417 417
             $documentItem = array(
418 418
                 'id' => intval($_piVars['id']),
@@ -442,7 +442,7 @@  discard block
 block discarded – undo
442 442
             $document = tx_dlf_document::getInstance($documentItem['id'],0);
443 443
 
444 444
             // set endpage for toc and subentry based on logid
445
-            if (($_piVars['addToBasket'] == 'subentry') OR ($_piVars['addToBasket'] == 'toc')) {
445
+            if (($_piVars['addToBasket'] == 'subentry') or ($_piVars['addToBasket'] == 'toc')) {
446 446
 
447 447
                 $smLinks = $document->smLinks;
448 448
 
@@ -724,7 +724,7 @@  discard block
 block discarded – undo
724 724
 
725 725
         }
726 726
 
727
-        return false;
727
+        return FALSE;
728 728
 
729 729
     }
730 730
 
Please login to merge, or discard this patch.
plugins/pageview/class.tx_dlf_pageview.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -166,7 +166,7 @@
 block discarded – undo
166 166
 
167 167
             $params = array(
168 168
                 'id' => $this->piVars['id'],
169
-                'addToBasket' => true
169
+                'addToBasket' => TRUE
170 170
             );
171 171
 
172 172
             if (empty($this->piVars['page'])) {
Please login to merge, or discard this patch.
common/class.tx_dlf_document.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -931,7 +931,7 @@
 block discarded – undo
931 931
 
932 932
             foreach($this->physicalStructureInfo as $page) {
933 933
 
934
-                if(strpos($page['orderlabel'], $logicalPage) !== false){
934
+                if(strpos($page['orderlabel'], $logicalPage) !== FALSE){
935 935
 
936 936
                     $this->lastSearchedPhysicalPage['logicalPage'] = $logicalPage;
937 937
                     $this->lastSearchedPhysicalPage['physicalPage'] = $physicalPage;
Please login to merge, or discard this patch.