We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -50,10 +50,10 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 | [ |
@@ -2,7 +2,7 @@ |
||
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 |
@@ -26,12 +26,12 @@ discard block |
||
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 |
||
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 |
||
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 | [], |
@@ -13,7 +13,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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); |