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 ( 086918...38b64c )
by
unknown
03:43 queued 13s
created
Classes/Controller/ToolboxController.php 1 patch
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -60,7 +60,8 @@  discard block
 block discarded – undo
60 60
      *
61 61
      * @return void
62 62
      */
63
-    private function renderTool() {
63
+    private function renderTool()
64
+    {
64 65
         if (!empty($this->settings['tool'])) {
65 66
             switch ($this->settings['tool']) {
66 67
                 case 'tx_dlf_annotationtool':
@@ -104,7 +105,8 @@  discard block
 block discarded – undo
104 105
      *
105 106
      * @return void
106 107
      */
107
-    private function renderToolByName(string $tool) {
108
+    private function renderToolByName(string $tool)
109
+    {
108 110
         $this->$tool();
109 111
         $this->view->assign($tool, true);
110 112
     }
@@ -474,7 +476,8 @@  discard block
 block discarded – undo
474 476
      *
475 477
      * @return bool true if empty, false otherwise
476 478
      */
477
-    private function isFullTextEmpty() {
479
+    private function isFullTextEmpty()
480
+    {
478 481
         $fileGrpsFulltext = GeneralUtility::trimExplode(',', $this->extConf['fileGrpFulltext']);
479 482
         while ($fileGrpFulltext = array_shift($fileGrpsFulltext)) {
480 483
             $fullTextFile = $this->doc->physicalStructureInfo[$this->doc->physicalStructure[$this->requestData['page']]]['files'][$fileGrpFulltext];
Please login to merge, or discard this patch.