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
Pull Request — master (#878)
by Beatrycze
03:50
created
Classes/Controller/NavigationController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
         }
67 67
 
68 68
         // Steps for X pages backward / forward. Double page view uses double steps.
69
-        $basePageSteps = $this->settings['pageStep'] ?: 10;
69
+        $basePageSteps = $this->settings['pageStep'] ? : 10;
70 70
         $pageSteps = $basePageSteps * ($this->requestData['double'] + 1);
71 71
 
72 72
         $this->view->assign('basePageSteps', $basePageSteps);
Please login to merge, or discard this patch.
Classes/Controller/ToolboxController.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
      *
53 53
      * @return void
54 54
      */
55
-	// TODO(client-side)
55
+    // TODO(client-side)
56 56
     public function annotationtool()
57 57
     {
58 58
         if (
Please login to merge, or discard this patch.
Classes/Controller/MetadataController.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -299,7 +299,8 @@
 block discarded – undo
299 299
                 // Collect IDs of all logical structures. This is a flattened tree, so the
300 300
                 // order also works for rootline configurations.
301 301
                 $allIds = [];
302
-                function getIds($toc, &$output) {
302
+                function getIds($toc, &$output)
303
+                {
303 304
                     foreach ($toc as $entry) {
304 305
                         $output[$entry['id']] = true;
305 306
                         if (is_array($entry['children'])) {
Please login to merge, or discard this patch.
Classes/Controller/DocumentController.php 3 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
  */
25 25
 class DocumentController extends AbstractController
26 26
 {
27
-   /**
27
+    /**
28 28
      * The main method of the PlugIn
29 29
      *
30 30
      * @access public
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -135,7 +135,7 @@
 block discarded – undo
135 135
         //       page: \d+
136 136
         //       double: 0|1
137 137
 
138
-        $make = function ($page, $double, $pagegrid) {
138
+        $make = function($page, $double, $pagegrid) {
139 139
             $result = $this->uriBuilder->reset()
140 140
                 ->setTargetPageUid($GLOBALS['TSFE']->id)
141 141
                 ->setCreateAbsoluteUri(!empty($this->settings['forceAbsoluteUrl']) ? true : false)
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -135,7 +135,8 @@
 block discarded – undo
135 135
         //       page: \d+
136 136
         //       double: 0|1
137 137
 
138
-        $make = function ($page, $double, $pagegrid) {
138
+        $make = function ($page, $double, $pagegrid)
139
+        {
139 140
             $result = $this->uriBuilder->reset()
140 141
                 ->setTargetPageUid($GLOBALS['TSFE']->id)
141 142
                 ->setCreateAbsoluteUri(!empty($this->settings['forceAbsoluteUrl']) ? true : false)
Please login to merge, or discard this patch.