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 (#818)
by
unknown
12:19 queued 08:29
created
Classes/Common/MetsDocument.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -670,7 +670,7 @@
 block discarded – undo
670 670
             }
671 671
         }
672 672
 
673
-        return array_filter($allMdIds, function ($element) {
673
+        return array_filter($allMdIds, function($element) {
674 674
             return !empty($element);
675 675
         });
676 676
     }
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -670,7 +670,8 @@
 block discarded – undo
670 670
             }
671 671
         }
672 672
 
673
-        return array_filter($allMdIds, function ($element) {
673
+        return array_filter($allMdIds, function ($element)
674
+        {
674 675
             return !empty($element);
675 676
         });
676 677
     }
Please login to merge, or discard this patch.
Classes/Format/AudioVideoMD.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,6 +48,6 @@
 block discarded – undo
48 48
             $metadata['video_duration'] = [$videoDuration];
49 49
         }
50 50
 
51
-        $metadata['duration'] = $metadata['video_duration'] ?: $metadata['audio_duration'] ?: [];
51
+        $metadata['duration'] = $metadata['video_duration'] ? : $metadata['audio_duration'] ? : [];
52 52
     }
53 53
 }
Please login to merge, or discard this patch.
Classes/Controller/MediaPlayerController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -125,7 +125,7 @@
 block discarded – undo
125 125
         }
126 126
 
127 127
         return [
128
-            'start' => $videoChapters[$pageNo - 1]['timecode'] ?: '',
128
+            'start' => $videoChapters[$pageNo - 1]['timecode'] ? : '',
129 129
             'mode' => $initialMode,
130 130
             'chapters' => $videoChapters,
131 131
             'metadata' => $doc->getTitledata($this->settings['storagePid']),
Please login to merge, or discard this patch.
Classes/ViewHelpers/MediaPlayerConfigViewHelper.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
73 73
 <script>
74 74
     window[$idJson] = $resultJson;
75 75
 </script>
76
-CONFIG;
76
+config;
77 77
     }
78 78
 
79 79
     /**
Please login to merge, or discard this patch.