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
09:43
created
Classes/Controller/MediaPlayerController.php 2 patches
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.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -125,7 +125,8 @@
 block discarded – undo
125 125
 
126 126
         // Get additional video URLs
127 127
         $videoUrl = [];
128
-        if (!empty($thumbFiles = $this->findFiles($doc, 0, $thumbFileGroups))) { // 0 = for whole video (not just chapter)
128
+        if (!empty($thumbFiles = $this->findFiles($doc, 0, $thumbFileGroups))) {
129
+// 0 = for whole video (not just chapter)
129 130
             $videoUrl['poster'] = $thumbFiles[0];
130 131
         }
131 132
         if (!empty($waveformFiles = $this->findFiles($doc, $pageNo, $waveformFileGroups))) {
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.
Classes/Format/AudioVideoMD.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 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
         if (!empty($videoFrameRate = (string) $xml->xpath('./videomd:fileData/videomd:frameRate[@mode="Fixed"]')[0])) {
54 54
             $metadata['video_frame_rate'] = [$videoFrameRate];
Please login to merge, or discard this patch.