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 ( 95c820...9d9b7c )
by
unknown
03:11
created
Classes/Common/Indexer.php 1 patch
Braces   +5 added lines, -3 removed lines patch added patch discarded remove patch
@@ -346,7 +346,7 @@  discard block
 block discarded – undo
346 346
                 ) {
347 347
                     $solrDoc->setField('date', $metadata['date'][0]);
348 348
                 // change date YYYYMMDD to YYYY-MM-DD
349
-                } elseif (preg_match("/^[\d]{8}$/", $metadata['date'][0])){
349
+                } elseif (preg_match("/^[\d]{8}$/", $metadata['date'][0])) {
350 350
                     $solrDoc->setField('date', date("Y-m-d", strtotime($metadata['date'][0])));
351 351
                 // convert any datetime to proper ISO extended datetime format and timezone for SOLR
352 352
                 } elseif (preg_match("/^[0-9]{4}-[0-9]{2}-[0-9]{2}T.*$/", $metadata['date'][0])) {
@@ -555,7 +555,8 @@  discard block
 block discarded – undo
555 555
      *
556 556
      * @return \Solarium\Core\Query\DocumentInterface
557 557
      */
558
-    private static function getSolrDocument($updateQuery, $document, $unit, $fullText = '') {
558
+    private static function getSolrDocument($updateQuery, $document, $unit, $fullText = '')
559
+    {
559 560
         $solrDoc = $updateQuery->createDocument();
560 561
         // Create unique identifier from document's UID and unit's XML ID.
561 562
         $solrDoc->setField('id', $document->getUid() . $unit['id']);
@@ -579,7 +580,8 @@  discard block
 block discarded – undo
579 580
      *
580 581
      * @return array|string
581 582
      */
582
-    private static function removeAppendsFromAuthor($authors) {
583
+    private static function removeAppendsFromAuthor($authors)
584
+    {
583 585
         if (is_array($authors)) {
584 586
             foreach ($authors as $i => $author) {
585 587
                 $splitName = explode(chr(31), $author);
Please login to merge, or discard this patch.