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/ModsTest.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -50,10 +50,10 @@  discard block
 block discarded – undo
50 50
      */
51 51
     public function extractAuthorsIfNoAutRoleTermAssigned(): void
52 52
     {
53
-        $xml = simplexml_load_file( __DIR__ . '/../../Fixtures/Format/modsAuthorNoAutRoleTerm.xml');
53
+        $xml = simplexml_load_file(__DIR__ . '/../../Fixtures/Format/modsAuthorNoAutRoleTerm.xml');
54 54
         $mods = new Mods();
55 55
 
56
-        $mods->extractMetadata($xml,$this->metadata);
56
+        $mods->extractMetadata($xml, $this->metadata);
57 57
 
58 58
         $this->assertEquals(
59 59
             [
@@ -70,10 +70,10 @@  discard block
 block discarded – undo
70 70
      */
71 71
     public function extractAuthorsWithAutRoleTermAssigned(): void
72 72
     {
73
-        $xml = simplexml_load_file( __DIR__ . '/../../Fixtures/Format/modsAuthorWithAutRoleTerm.xml');
73
+        $xml = simplexml_load_file(__DIR__ . '/../../Fixtures/Format/modsAuthorWithAutRoleTerm.xml');
74 74
         $mods = new Mods();
75 75
 
76
-        $mods->extractMetadata($xml,$this->metadata);
76
+        $mods->extractMetadata($xml, $this->metadata);
77 77
         $this->assertEquals(
78 78
             [
79 79
                 'May, Jack, I',
@@ -92,10 +92,10 @@  discard block
 block discarded – undo
92 92
      */
93 93
     public function extractPlaces(): void
94 94
     {
95
-        $xml = simplexml_load_file( __DIR__ . '/../../Fixtures/Format/modsOriginInfo.xml');
95
+        $xml = simplexml_load_file(__DIR__ . '/../../Fixtures/Format/modsOriginInfo.xml');
96 96
         $mods = new Mods();
97 97
 
98
-        $mods->extractMetadata($xml,$this->metadata);
98
+        $mods->extractMetadata($xml, $this->metadata);
99 99
 
100 100
         $this->assertEquals(
101 101
             [
@@ -121,10 +121,10 @@  discard block
 block discarded – undo
121 121
      */
122 122
     public function extractYears(): void
123 123
     {
124
-        $xml = simplexml_load_file( __DIR__ . '/../../Fixtures/Format/modsOriginInfo.xml');
124
+        $xml = simplexml_load_file(__DIR__ . '/../../Fixtures/Format/modsOriginInfo.xml');
125 125
         $mods = new Mods();
126 126
 
127
-        $mods->extractMetadata($xml,$this->metadata);
127
+        $mods->extractMetadata($xml, $this->metadata);
128 128
 
129 129
         $this->assertEquals(
130 130
             [
@@ -150,10 +150,10 @@  discard block
 block discarded – undo
150 150
      */
151 151
     public function extractPlacesWithElectronicEdInside(): void
152 152
     {
153
-        $xml = simplexml_load_file( __DIR__ . '/../../Fixtures/Format/modsOriginInfoWithEditionElectonicEd.xml');
153
+        $xml = simplexml_load_file(__DIR__ . '/../../Fixtures/Format/modsOriginInfoWithEditionElectonicEd.xml');
154 154
         $mods = new Mods();
155 155
 
156
-        $mods->extractMetadata($xml,$this->metadata);
156
+        $mods->extractMetadata($xml, $this->metadata);
157 157
 
158 158
         $this->assertEquals(
159 159
             [
@@ -179,10 +179,10 @@  discard block
 block discarded – undo
179 179
      */
180 180
     public function extractYearsWithElectronicEdInside(): void
181 181
     {
182
-        $xml = simplexml_load_file( __DIR__ . '/../../Fixtures/Format/modsOriginInfoWithEditionElectonicEd.xml');
182
+        $xml = simplexml_load_file(__DIR__ . '/../../Fixtures/Format/modsOriginInfoWithEditionElectonicEd.xml');
183 183
         $mods = new Mods();
184 184
 
185
-        $mods->extractMetadata($xml,$this->metadata);
185
+        $mods->extractMetadata($xml, $this->metadata);
186 186
 
187 187
         $this->assertEquals(
188 188
             [
Please login to merge, or discard this patch.
Tests/Unit/Format/TeiHeaderTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace Kitodo\Dlf\Tests\Unit\Format;
4 4
 
5
-use Kitodo\Dlf\Format\TeiHeader ;
5
+use Kitodo\Dlf\Format\TeiHeader;
6 6
 use TYPO3\TestingFramework\Core\Unit\UnitTestCase;
7 7
 
8 8
 class TeiHeaderTest extends UnitTestCase
Please login to merge, or discard this patch.
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.