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 (#894)
by
unknown
06:09 queued 02:52
created
Tests/Unit/Format/AudioVideoMDTest.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -26,12 +26,12 @@  discard block
 block discarded – undo
26 26
      */
27 27
     public function canExtractVideoDuration(): void
28 28
     {
29
-        $xml = simplexml_load_file( __DIR__ . '/../../Fixtures/Format/audioVideo.xml');
29
+        $xml = simplexml_load_file(__DIR__ . '/../../Fixtures/Format/audioVideo.xml');
30 30
         $audioVideoMD = new AudioVideoMD();
31 31
 
32 32
         $videoXml = $xml->xpath('//videomd:VIDEOMD')[0];
33 33
 
34
-        $audioVideoMD->extractMetadata($videoXml,$this->metadata);
34
+        $audioVideoMD->extractMetadata($videoXml, $this->metadata);
35 35
 
36 36
         $this->assertEquals(
37 37
             ["00:01:30.07"],
@@ -55,12 +55,12 @@  discard block
 block discarded – undo
55 55
      */
56 56
     public function canExtractAudioDuration(): void
57 57
     {
58
-        $xml = simplexml_load_file( __DIR__ . '/../../Fixtures/Format/audioVideo.xml');
58
+        $xml = simplexml_load_file(__DIR__ . '/../../Fixtures/Format/audioVideo.xml');
59 59
         $audioVideoMD = new AudioVideoMD();
60 60
 
61 61
         $audioXml = $xml->xpath('//audiomd:AUDIOMD')[0];
62 62
 
63
-        $audioVideoMD->extractMetadata($audioXml,$this->metadata);
63
+        $audioVideoMD->extractMetadata($audioXml, $this->metadata);
64 64
 
65 65
         $this->assertEquals(
66 66
             ["01:10:35.08"],
@@ -84,12 +84,12 @@  discard block
 block discarded – undo
84 84
      */
85 85
     public function noDuration(): void
86 86
     {
87
-        $xml = simplexml_load_file( __DIR__ . '/../../Fixtures/Format/audioVideo.xml');
87
+        $xml = simplexml_load_file(__DIR__ . '/../../Fixtures/Format/audioVideo.xml');
88 88
         $audioVideoMD = new AudioVideoMD();
89 89
 
90 90
         $videoXml = $xml->xpath('//audiomd:AUDIOMD')[1];
91 91
 
92
-        $audioVideoMD->extractMetadata($videoXml,$this->metadata);
92
+        $audioVideoMD->extractMetadata($videoXml, $this->metadata);
93 93
 
94 94
         $this->assertEquals(
95 95
             [],
Please login to merge, or discard this patch.
Tests/Unit/Format/AltoTest.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
      */
14 14
     public function getRawData(): void
15 15
     {
16
-        $xml = simplexml_load_file( __DIR__ . '/../../Fixtures/Format/alto.xml');
16
+        $xml = simplexml_load_file(__DIR__ . '/../../Fixtures/Format/alto.xml');
17 17
         $alto = new Alto();
18 18
 
19 19
         $rawText = $alto->getRawText($xml);
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
      */
28 28
     public function getTextAsMiniOcr(): void
29 29
     {
30
-        $xml = simplexml_load_file( __DIR__ . '/../../Fixtures/Format/alto.xml');
30
+        $xml = simplexml_load_file(__DIR__ . '/../../Fixtures/Format/alto.xml');
31 31
         $alto = new Alto();
32 32
 
33 33
         $rawText = $alto->getTextAsMiniOcr($xml);
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
      */
66 66
     public function getTextAsMiniOcrNoTextBlock(): void
67 67
     {
68
-        $xml = simplexml_load_file( __DIR__ . '/../../Fixtures/Format/altoNoTextBlock.xml');
68
+        $xml = simplexml_load_file(__DIR__ . '/../../Fixtures/Format/altoNoTextBlock.xml');
69 69
         $alto = new Alto();
70 70
 
71 71
         $rawText = $alto->getTextAsMiniOcr($xml);
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
      */
80 80
     public function getTextAsMiniOcrNoTextline(): void
81 81
     {
82
-        $xml = simplexml_load_file( __DIR__ . '/../../Fixtures/Format/altoNoTextLine.xml');
82
+        $xml = simplexml_load_file(__DIR__ . '/../../Fixtures/Format/altoNoTextLine.xml');
83 83
         $alto = new Alto();
84 84
 
85 85
         $rawText = $alto->getTextAsMiniOcr($xml);
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
      */
94 94
     public function getTextAsMiniOcrNoString(): void
95 95
     {
96
-        $xml = simplexml_load_file( __DIR__ . '/../../Fixtures/Format/altoNoString.xml');
96
+        $xml = simplexml_load_file(__DIR__ . '/../../Fixtures/Format/altoNoString.xml');
97 97
         $alto = new Alto();
98 98
 
99 99
         $rawText = $alto->getTextAsMiniOcr($xml);
Please login to merge, or discard this patch.
Classes/Api/Viaf/Client.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -77,7 +77,8 @@
 block discarded – undo
77 77
      *
78 78
      * @return void
79 79
      */
80
-    public function setEndpoint($endpoint) {
80
+    public function setEndpoint($endpoint)
81
+    {
81 82
         $this->endpoint = $endpoint;
82 83
     }
83 84
 
Please login to merge, or discard this patch.
Classes/Api/Orcid/Client.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -77,7 +77,8 @@
 block discarded – undo
77 77
      *
78 78
      * @return void
79 79
      */
80
-    public function setEndpoint($endpoint) {
80
+    public function setEndpoint($endpoint)
81
+    {
81 82
         $this->endpoint = $endpoint;
82 83
     }
83 84
 
Please login to merge, or discard this patch.
Classes/Controller/CalendarController.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
                 foreach ($year['children'] as $month) {
128 128
                     foreach ($month['children'] as $day) {
129 129
                         foreach ($day['children'] as $issue) {
130
-                            $title = $issue['label'] ?: $issue['orderlabel'];
130
+                            $title = $issue['label'] ? : $issue['orderlabel'];
131 131
                             if (strtotime($title) !== false) {
132 132
                                 $title = strftime('%x', strtotime($title));
133 133
                             }
@@ -218,8 +218,8 @@  discard block
 block discarded – undo
218 218
         $this->view->assign('calendarData', $calendarData);
219 219
         $this->view->assign('documentId', $this->document->getUid());
220 220
         $this->view->assign('yearLinkTitle', $yearLinkTitle);
221
-        $this->view->assign('parentDocumentId', $this->document->getPartof() ?: $this->document->getDoc()->tableOfContents[0]['points']);
222
-        $this->view->assign('allYearDocTitle', $this->document->getDoc()->getTitle($this->document->getPartof()) ?: $this->document->getDoc()->tableOfContents[0]['label']);
221
+        $this->view->assign('parentDocumentId', $this->document->getPartof() ? : $this->document->getDoc()->tableOfContents[0]['points']);
222
+        $this->view->assign('allYearDocTitle', $this->document->getDoc()->getTitle($this->document->getPartof()) ? : $this->document->getDoc()->tableOfContents[0]['label']);
223 223
     }
224 224
 
225 225
     /**
@@ -255,7 +255,7 @@  discard block
 block discarded – undo
255 255
 
256 256
                 if (empty($yearLabel)) {
257 257
                     // if neither order nor orderlabel is set, use the id...
258
-                    $yearLabel = (string)$id;
258
+                    $yearLabel = (string) $id;
259 259
                 }
260 260
 
261 261
                 $years[] = [
@@ -294,7 +294,7 @@  discard block
 block discarded – undo
294 294
                     if (is_int($key)) {
295 295
                         $yearFilled[] = $yearArray[$key];
296 296
                     } else {
297
-                        $yearFilled[] = ['title' => $min+$i, 'documentId' => ''];
297
+                        $yearFilled[] = ['title' => $min + $i, 'documentId' => ''];
298 298
                     }
299 299
                 }
300 300
                 $yearArray = $yearFilled;
Please login to merge, or discard this patch.