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
Push — master ( 82b7d7...c9e6b0 )
by Sebastian
02:23
created
common/class.tx_dlf_document.php 2 patches
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -572,7 +572,7 @@  discard block
 block discarded – undo
572 572
 
573 573
         $details['id'] = $attributes['ID'];
574 574
 
575
-        $details['dmdId'] = (isset($attributes['DMDID']) ?  $attributes['DMDID'] : '');
575
+        $details['dmdId'] = (isset($attributes['DMDID']) ? $attributes['DMDID'] : '');
576 576
 
577 577
         $details['label'] = (isset($attributes['LABEL']) ? $attributes['LABEL'] : '');
578 578
 
@@ -921,7 +921,7 @@  discard block
 block discarded – undo
921 921
      */
922 922
     public function getPhysicalPage($logicalPage) {
923 923
 
924
-        if(!empty( $this->lastSearchedPhysicalPage['logicalPage']) &&  $this->lastSearchedPhysicalPage['logicalPage'] == $logicalPage) {
924
+        if (!empty($this->lastSearchedPhysicalPage['logicalPage']) && $this->lastSearchedPhysicalPage['logicalPage'] == $logicalPage) {
925 925
 
926 926
             return $this->lastSearchedPhysicalPage['physicalPage'];
927 927
 
@@ -929,9 +929,9 @@  discard block
 block discarded – undo
929 929
 
930 930
             $physicalPage = 0;
931 931
 
932
-            foreach($this->physicalStructureInfo as $page) {
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;
@@ -1355,7 +1355,7 @@  discard block
 block discarded – undo
1355 1355
 
1356 1356
             if (TYPO3_DLOG) {
1357 1357
 
1358
-                \TYPO3\CMS\Core\Utility\GeneralUtility::devLog('[tx_dlf_document->save('.$_pid.', '.$_core.')] Could not identify document/structure type ' . $GLOBALS['TYPO3_DB']->fullQuoteStr($metadata['type'][0], 'tx_dlf_structures'),
1358
+                \TYPO3\CMS\Core\Utility\GeneralUtility::devLog('[tx_dlf_document->save('.$_pid.', '.$_core.')] Could not identify document/structure type '.$GLOBALS['TYPO3_DB']->fullQuoteStr($metadata['type'][0], 'tx_dlf_structures'),
1359 1359
                                             self::$extKey, SYSLOG_SEVERITY_ERROR);
1360 1360
 
1361 1361
             }
@@ -1526,7 +1526,7 @@  discard block
 block discarded – undo
1526 1526
 
1527 1527
             if ($parentLocation != $this->location) {
1528 1528
 
1529
-                $parentDoc =& tx_dlf_document::getInstance($parentLocation, $pid);
1529
+                $parentDoc = & tx_dlf_document::getInstance($parentLocation, $pid);
1530 1530
 
1531 1531
                 if ($parentDoc->ready) {
1532 1532
 
@@ -2440,7 +2440,7 @@  discard block
 block discarded – undo
2440 2440
                     $hookObjects = tx_dlf_helper::getHookObjects('common/class.tx_dlf_document.php');
2441 2441
 
2442 2442
                     // Apply hooks.
2443
-                    foreach($hookObjects as $hookObj) {
2443
+                    foreach ($hookObjects as $hookObj) {
2444 2444
 
2445 2445
                         if (method_exists($hookObj, 'construct_postProcessRecordId')) {
2446 2446
 
Please login to merge, or discard this 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.