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 (#584)
by Sebastian
03:18
created
Classes/Plugin/PageView.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -399,12 +399,12 @@
 block discarded – undo
399 399
         // Get the controls for the map.
400 400
         $this->controls = explode(',', $this->conf['features']);
401 401
         $this->controlTargets = [
402
-            'FullScreen' => $this->conf['fullScreenElementId'] ?: '',
403
-            'OverviewMap' => $this->conf['overviewMapElementId'] ?: '',
404
-            'Rotate' => $this->conf['rotateElementId'] ?: '',
405
-            'Zoom' => $this->conf['zoomElementId'] ?: '',
406
-            'ZoomSlider' => $this->conf['zoomSliderElementId'] ?: '',
407
-            'ZoomToExtent' => $this->conf['zoomToExtentElementId'] ?: ''
402
+            'FullScreen' => $this->conf['fullScreenElementId'] ? : '',
403
+            'OverviewMap' => $this->conf['overviewMapElementId'] ? : '',
404
+            'Rotate' => $this->conf['rotateElementId'] ? : '',
405
+            'Zoom' => $this->conf['zoomElementId'] ? : '',
406
+            'ZoomSlider' => $this->conf['zoomSliderElementId'] ? : '',
407
+            'ZoomToExtent' => $this->conf['zoomToExtentElementId'] ? : ''
408 408
         ];
409 409
         // Fill in the template markers.
410 410
         $markerArray = array_merge($this->addInteraction(), $this->addBasketForm());
Please login to merge, or discard this patch.