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 ( 72e963...5ba47e )
by
unknown
03:17
created
Classes/Hooks/ItemsProcFunc.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,8 @@
 block discarded – undo
63 63
      *
64 64
      * @return void
65 65
      */
66
-    public function getTyposcriptConfigFromPluginSiteRoot($params) {
66
+    public function getTyposcriptConfigFromPluginSiteRoot($params)
67
+    {
67 68
         $objectManager = GeneralUtility::makeInstance(ObjectManager::class);
68 69
         $pid = $params['flexParentDatabaseRow']['pid'];
69 70
         $rootline = BackendUtility::BEgetRootLine($pid);
Please login to merge, or discard this patch.
Classes/Controller/NavigationController.php 2 patches
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,8 @@
 block discarded – undo
29 29
      * @param PageSelectForm|NULL $pageSelectForm
30 30
      * @return void
31 31
      */
32
-    public function pageSelectAction(PageSelectForm $pageSelectForm = NULL) {
32
+    public function pageSelectAction(PageSelectForm $pageSelectForm = NULL)
33
+    {
33 34
         if ($pageSelectForm) {
34 35
             $uri = $this->uriBuilder->reset()
35 36
                 ->setArguments(
Please login to merge, or discard this patch.
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
      * @param PageSelectForm|NULL $pageSelectForm
30 30
      * @return void
31 31
      */
32
-    public function pageSelectAction(PageSelectForm $pageSelectForm = NULL) {
32
+    public function pageSelectAction(PageSelectForm $pageSelectForm = null) {
33 33
         if ($pageSelectForm) {
34 34
             $uri = $this->uriBuilder->reset()
35 35
                 ->setArguments(
Please login to merge, or discard this patch.
Classes/Common/Indexer.php 1 patch
Braces   +5 added lines, -3 removed lines patch added patch discarded remove patch
@@ -341,7 +341,7 @@  discard block
 block discarded – undo
341 341
                 ) {
342 342
                     $solrDoc->setField('date', $metadata['date'][0]);
343 343
                 // change date YYYYMMDD to YYYY-MM-DD
344
-                } elseif (preg_match("/^[\d]{8}$/", $metadata['date'][0])){
344
+                } elseif (preg_match("/^[\d]{8}$/", $metadata['date'][0])) {
345 345
                     $solrDoc->setField('date', date("Y-m-d", strtotime($metadata['date'][0])));
346 346
                 // convert any datetime to proper ISO extended datetime format and timezone for SOLR
347 347
                 } elseif (preg_match("/^[0-9]{4}-[0-9]{2}-[0-9]{2}T.*$/", $metadata['date'][0])) {
@@ -550,7 +550,8 @@  discard block
 block discarded – undo
550 550
      *
551 551
      * @return DocumentInterface
552 552
      */
553
-    private static function getSolrDocument($updateQuery, $document, $unit, $fullText = '') {
553
+    private static function getSolrDocument($updateQuery, $document, $unit, $fullText = '')
554
+    {
554 555
         $solrDoc = $updateQuery->createDocument();
555 556
         // Create unique identifier from document's UID and unit's XML ID.
556 557
         $solrDoc->setField('id', $document->getUid() . $unit['id']);
@@ -574,7 +575,8 @@  discard block
 block discarded – undo
574 575
      *
575 576
      * @return array|string
576 577
      */
577
-    private static function removeAppendsFromAuthor($authors) {
578
+    private static function removeAppendsFromAuthor($authors)
579
+    {
578 580
         if (is_array($authors)) {
579 581
             foreach ($authors as $i => $author) {
580 582
                 $splitName = explode(chr(31), $author);
Please login to merge, or discard this patch.