@@ -143,7 +143,7 @@ discard block |
||
143 | 143 | 'label' => 'LLL:EXT:dlf/Resources/Private/Language/locallang_labels.xlf:tx_dlf_metadata.wrap', |
144 | 144 | 'config' => [ |
145 | 145 | 'behaviour' => [ |
146 | - 'allowLanguageSynchronization' => true |
|
146 | + 'allowLanguageSynchronization' => TRUE |
|
147 | 147 | ], |
148 | 148 | 'type' => 'text', |
149 | 149 | 'cols' => 48, |
@@ -151,8 +151,8 @@ discard block |
||
151 | 151 | 'wrap' => 'off', |
152 | 152 | 'eval' => 'trim', |
153 | 153 | 'default' => "key.wrap = <dt>|</dt>\nvalue.required = 1\nvalue.wrap = <dd>|</dd>", |
154 | - 'fixedFont' => true, |
|
155 | - 'enableTabulator' => true |
|
154 | + 'fixedFont' => TRUE, |
|
155 | + 'enableTabulator' => TRUE |
|
156 | 156 | ], |
157 | 157 | ], |
158 | 158 | 'index_tokenized' => [ |
@@ -157,14 +157,14 @@ |
||
157 | 157 | 'label' => 'LLL:EXT:dlf/Resources/Private/Language/locallang_labels.xlf:tx_dlf_collections.description', |
158 | 158 | 'config' => [ |
159 | 159 | 'behaviour' => [ |
160 | - 'allowLanguageSynchronization' => true |
|
160 | + 'allowLanguageSynchronization' => TRUE |
|
161 | 161 | ], |
162 | 162 | 'type' => 'text', |
163 | 163 | 'cols' => 30, |
164 | 164 | 'rows' => 10, |
165 | 165 | 'wrap' => 'virtual', |
166 | 166 | 'default' => '', |
167 | - 'enableRichtext' => true, |
|
167 | + 'enableRichtext' => TRUE, |
|
168 | 168 | ], |
169 | 169 | ], |
170 | 170 | 'thumbnail' => [ |
@@ -32,8 +32,7 @@ discard block |
||
32 | 32 | * @subpackage dlf |
33 | 33 | * @access public |
34 | 34 | */ |
35 | -class Generator |
|
36 | -{ |
|
35 | +class Generator { |
|
37 | 36 | /** |
38 | 37 | * @var LanguageService |
39 | 38 | */ |
@@ -57,37 +56,32 @@ discard block |
||
57 | 56 | /** |
58 | 57 | * @param LanguageService $languageService |
59 | 58 | */ |
60 | - public function injectLanguageService(LanguageService $languageService) |
|
61 | - { |
|
59 | + public function injectLanguageService(LanguageService $languageService) { |
|
62 | 60 | $this->languageService = $languageService; |
63 | 61 | } |
64 | 62 | |
65 | 63 | /** |
66 | 64 | * @param DataMapper $dataMapper |
67 | 65 | */ |
68 | - public function injectDataMapper(DataMapper $dataMapper) |
|
69 | - { |
|
66 | + public function injectDataMapper(DataMapper $dataMapper) { |
|
70 | 67 | $this->dataMapper = $dataMapper; |
71 | 68 | } |
72 | 69 | |
73 | 70 | /** |
74 | 71 | * @param SqlReader $sqlReader |
75 | 72 | */ |
76 | - public function injectSqlReader(DataMapper $sqlReader) |
|
77 | - { |
|
73 | + public function injectSqlReader(DataMapper $sqlReader) { |
|
78 | 74 | $this->sqlReader = $sqlReader; |
79 | 75 | } |
80 | 76 | |
81 | 77 | /** |
82 | 78 | * @param ConfigurationManager $configurationManager |
83 | 79 | */ |
84 | - public function injectConfigurationManager(ConfigurationManager $configurationManager) |
|
85 | - { |
|
80 | + public function injectConfigurationManager(ConfigurationManager $configurationManager) { |
|
86 | 81 | $this->configurationManager = $configurationManager; |
87 | 82 | } |
88 | 83 | |
89 | - public function __construct() |
|
90 | - { |
|
84 | + public function __construct() { |
|
91 | 85 | |
92 | 86 | } |
93 | 87 | |
@@ -205,8 +199,7 @@ discard block |
||
205 | 199 | return $result; |
206 | 200 | } |
207 | 201 | |
208 | - protected function parseDocComment($docComment) |
|
209 | - { |
|
202 | + protected function parseDocComment($docComment) { |
|
210 | 203 | // TODO: Consider using phpDocumentor (though that splits the docblock into summary and description) |
211 | 204 | |
212 | 205 | // Adopted from DocCommentParser in TYPO3 v9 |
@@ -231,8 +224,7 @@ discard block |
||
231 | 224 | /** |
232 | 225 | * Transform table structure into .rst page. |
233 | 226 | */ |
234 | - public function generatePage(array $tables) |
|
235 | - { |
|
227 | + public function generatePage(array $tables) { |
|
236 | 228 | $page = new RstSection(); |
237 | 229 | $page->setHeader('Database Tables'); |
238 | 230 | $page->addText(<<<RST |
@@ -97,7 +97,7 @@ discard block |
||
97 | 97 | */ |
98 | 98 | public function collectTables(): array |
99 | 99 | { |
100 | - $sqlCode = $this->sqlReader->getTablesDefinitionString(true); |
|
100 | + $sqlCode = $this->sqlReader->getTablesDefinitionString(TRUE); |
|
101 | 101 | $createTableStatements = $this->sqlReader->getCreateTableStatementArray($sqlCode); |
102 | 102 | |
103 | 103 | $tableToClassName = $this->getTableClassMap(); |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | continue; |
114 | 114 | } |
115 | 115 | |
116 | - $className = $tableToClassName[$tableName] ?? null; |
|
116 | + $className = $tableToClassName[$tableName] ?? NULL; |
|
117 | 117 | |
118 | 118 | $result[] = $this->getTableInfo($table, $className); |
119 | 119 | } |
@@ -151,7 +151,7 @@ discard block |
||
151 | 151 | $isPrimary = []; |
152 | 152 | if (!is_null($primaryKey = $table->getPrimaryKey())) { |
153 | 153 | foreach ($primaryKey->getUnquotedColumns() as $primaryColumn) { |
154 | - $isPrimary[$primaryColumn] = true; |
|
154 | + $isPrimary[$primaryColumn] = TRUE; |
|
155 | 155 | } |
156 | 156 | } |
157 | 157 | |
@@ -172,14 +172,14 @@ discard block |
||
172 | 172 | $result = (object) [ |
173 | 173 | 'name' => $tableName, |
174 | 174 | 'columns' => $columns, |
175 | - 'modelClass' => null, |
|
175 | + 'modelClass' => NULL, |
|
176 | 176 | 'sqlComment' => $table->getComment() ?? '', |
177 | 177 | 'classComment' => '', |
178 | 178 | 'feComment' => $this->languageService->sL($GLOBALS['TCA'][$tableName]['ctrl']['title'] ?? ''), |
179 | 179 | ]; |
180 | 180 | |
181 | 181 | // Integrate doc-comments from model class and its fields |
182 | - if ($className !== null) { |
|
182 | + if ($className !== NULL) { |
|
183 | 183 | $reflection = new ReflectionClass($className); |
184 | 184 | |
185 | 185 | $dataMap = $this->dataMapper->getDataMap($className); |
@@ -189,7 +189,7 @@ discard block |
||
189 | 189 | // In that case, try to guess the column name from the property name. |
190 | 190 | |
191 | 191 | $column = $dataMap->getColumnMap($property->getName()); |
192 | - $columnName = $column === null |
|
192 | + $columnName = $column === NULL |
|
193 | 193 | ? GeneralUtility::camelCaseToLowerCaseUnderscored($property->getName()) |
194 | 194 | : $column->getColumnName(); |
195 | 195 | |
@@ -215,7 +215,7 @@ discard block |
||
215 | 215 | $lines = explode("\n", $docComment); |
216 | 216 | foreach ($lines as $line) { |
217 | 217 | // Stop parsing at first tag |
218 | - if ($line !== '' && strpos($line, '@') !== false) { |
|
218 | + if ($line !== '' && strpos($line, '@') !== FALSE) { |
|
219 | 219 | break; |
220 | 220 | } |
221 | 221 | |
@@ -239,7 +239,7 @@ discard block |
||
239 | 239 | This is a reference of all database tables defined by Kitodo.Presentation. |
240 | 240 | |
241 | 241 | .. tip:: This page is auto-generated. If you would like to edit it, please use doc-comments in the model class, COMMENT fields in ``ext_tables.sql`` if the table does not have one, or TCA labels. Then, you may re-generate the page by running ``composer docs:db`` inside the Kitodo.Presentation base folder. |
242 | -RST); |
|
242 | +rst); |
|
243 | 243 | |
244 | 244 | // Sort tables alphabetically |
245 | 245 | usort($tables, function ($lhs, $rhs) { |
@@ -274,11 +274,11 @@ discard block |
||
274 | 274 | 'field' => ( |
275 | 275 | $page->format($column->name, ['bold' => $column->isPrimary]) |
276 | 276 | . "\u{00a0}\u{00a0}" |
277 | - . $page->format($column->type->getName(), ['italic' => true]) |
|
277 | + . $page->format($column->type->getName(), ['italic' => TRUE]) |
|
278 | 278 | ), |
279 | 279 | |
280 | 280 | 'description' => $page->paragraphs([ |
281 | - $page->format($column->feComment, ['italic' => true]), |
|
281 | + $page->format($column->feComment, ['italic' => TRUE]), |
|
282 | 282 | $column->fieldComment, |
283 | 283 | $column->sqlComment, |
284 | 284 | ]), |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | */ |
61 | 61 | public function extractAuthorsIfNoAutRoleTermAssigned(): void |
62 | 62 | { |
63 | - $xml = simplexml_load_file(__DIR__ . '/../../Fixtures/Format/modsAuthorNoAutRoleTerm.xml'); |
|
63 | + $xml = simplexml_load_file(__DIR__.'/../../Fixtures/Format/modsAuthorNoAutRoleTerm.xml'); |
|
64 | 64 | $mods = new Mods(); |
65 | 65 | |
66 | 66 | $mods->extractMetadata($xml, $this->metadata, false); |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | */ |
81 | 81 | public function extractAuthorsWithAutRoleTermAssigned(): void |
82 | 82 | { |
83 | - $xml = simplexml_load_file(__DIR__ . '/../../Fixtures/Format/modsAuthorWithAutRoleTerm.xml'); |
|
83 | + $xml = simplexml_load_file(__DIR__.'/../../Fixtures/Format/modsAuthorWithAutRoleTerm.xml'); |
|
84 | 84 | $mods = new Mods(); |
85 | 85 | |
86 | 86 | $mods->extractMetadata($xml, $this->metadata, false); |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | */ |
103 | 103 | public function extractPlaces(): void |
104 | 104 | { |
105 | - $xml = simplexml_load_file(__DIR__ . '/../../Fixtures/Format/modsOriginInfo.xml'); |
|
105 | + $xml = simplexml_load_file(__DIR__.'/../../Fixtures/Format/modsOriginInfo.xml'); |
|
106 | 106 | $mods = new Mods(); |
107 | 107 | |
108 | 108 | $mods->extractMetadata($xml, $this->metadata, false); |
@@ -131,7 +131,7 @@ discard block |
||
131 | 131 | */ |
132 | 132 | public function extractYears(): void |
133 | 133 | { |
134 | - $xml = simplexml_load_file(__DIR__ . '/../../Fixtures/Format/modsOriginInfo.xml'); |
|
134 | + $xml = simplexml_load_file(__DIR__.'/../../Fixtures/Format/modsOriginInfo.xml'); |
|
135 | 135 | $mods = new Mods(); |
136 | 136 | |
137 | 137 | $mods->extractMetadata($xml, $this->metadata, false); |
@@ -160,7 +160,7 @@ discard block |
||
160 | 160 | */ |
161 | 161 | public function extractPlacesWithElectronicEdInside(): void |
162 | 162 | { |
163 | - $xml = simplexml_load_file(__DIR__ . '/../../Fixtures/Format/modsOriginInfoWithEditionElectronicEd.xml'); |
|
163 | + $xml = simplexml_load_file(__DIR__.'/../../Fixtures/Format/modsOriginInfoWithEditionElectronicEd.xml'); |
|
164 | 164 | $mods = new Mods(); |
165 | 165 | |
166 | 166 | $mods->extractMetadata($xml, $this->metadata, false); |
@@ -189,7 +189,7 @@ discard block |
||
189 | 189 | */ |
190 | 190 | public function extractYearsWithElectronicEdInside(): void |
191 | 191 | { |
192 | - $xml = simplexml_load_file(__DIR__ . '/../../Fixtures/Format/modsOriginInfoWithEditionElectronicEd.xml'); |
|
192 | + $xml = simplexml_load_file(__DIR__.'/../../Fixtures/Format/modsOriginInfoWithEditionElectronicEd.xml'); |
|
193 | 193 | $mods = new Mods(); |
194 | 194 | |
195 | 195 | $mods->extractMetadata($xml, $this->metadata, false); |
@@ -15,8 +15,7 @@ |
||
15 | 15 | use Kitodo\Dlf\Format\Mods; |
16 | 16 | use TYPO3\TestingFramework\Core\Unit\UnitTestCase; |
17 | 17 | |
18 | -class ModsTest extends UnitTestCase |
|
19 | -{ |
|
18 | +class ModsTest extends UnitTestCase { |
|
20 | 19 | protected $metadata = []; |
21 | 20 | |
22 | 21 | public function setUp(): void |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | $xml = simplexml_load_file(__DIR__ . '/../../Fixtures/Format/modsAuthorNoAutRoleTerm.xml'); |
64 | 64 | $mods = new Mods(); |
65 | 65 | |
66 | - $mods->extractMetadata($xml, $this->metadata, false); |
|
66 | + $mods->extractMetadata($xml, $this->metadata, FALSE); |
|
67 | 67 | |
68 | 68 | self::assertEquals( |
69 | 69 | [ |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | $xml = simplexml_load_file(__DIR__ . '/../../Fixtures/Format/modsAuthorWithAutRoleTerm.xml'); |
84 | 84 | $mods = new Mods(); |
85 | 85 | |
86 | - $mods->extractMetadata($xml, $this->metadata, false); |
|
86 | + $mods->extractMetadata($xml, $this->metadata, FALSE); |
|
87 | 87 | self::assertEquals( |
88 | 88 | [ |
89 | 89 | 'May, Jack, I', |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | $xml = simplexml_load_file(__DIR__ . '/../../Fixtures/Format/modsOriginInfo.xml'); |
106 | 106 | $mods = new Mods(); |
107 | 107 | |
108 | - $mods->extractMetadata($xml, $this->metadata, false); |
|
108 | + $mods->extractMetadata($xml, $this->metadata, FALSE); |
|
109 | 109 | |
110 | 110 | self::assertEquals( |
111 | 111 | [ |
@@ -134,7 +134,7 @@ discard block |
||
134 | 134 | $xml = simplexml_load_file(__DIR__ . '/../../Fixtures/Format/modsOriginInfo.xml'); |
135 | 135 | $mods = new Mods(); |
136 | 136 | |
137 | - $mods->extractMetadata($xml, $this->metadata, false); |
|
137 | + $mods->extractMetadata($xml, $this->metadata, FALSE); |
|
138 | 138 | |
139 | 139 | self::assertEquals( |
140 | 140 | [ |
@@ -163,7 +163,7 @@ discard block |
||
163 | 163 | $xml = simplexml_load_file(__DIR__ . '/../../Fixtures/Format/modsOriginInfoWithEditionElectronicEd.xml'); |
164 | 164 | $mods = new Mods(); |
165 | 165 | |
166 | - $mods->extractMetadata($xml, $this->metadata, false); |
|
166 | + $mods->extractMetadata($xml, $this->metadata, FALSE); |
|
167 | 167 | |
168 | 168 | self::assertEquals( |
169 | 169 | [ |
@@ -192,7 +192,7 @@ discard block |
||
192 | 192 | $xml = simplexml_load_file(__DIR__ . '/../../Fixtures/Format/modsOriginInfoWithEditionElectronicEd.xml'); |
193 | 193 | $mods = new Mods(); |
194 | 194 | |
195 | - $mods->extractMetadata($xml, $this->metadata, false); |
|
195 | + $mods->extractMetadata($xml, $this->metadata, FALSE); |
|
196 | 196 | |
197 | 197 | self::assertEquals( |
198 | 198 | [ |
@@ -36,7 +36,7 @@ |
||
36 | 36 | */ |
37 | 37 | public function canExtractDuration(): void |
38 | 38 | { |
39 | - $xml = simplexml_load_file(__DIR__ . '/../../Fixtures/Format/audioVideo.xml'); |
|
39 | + $xml = simplexml_load_file(__DIR__.'/../../Fixtures/Format/audioVideo.xml'); |
|
40 | 40 | $audioVideoMD = new AudioVideoMD(); |
41 | 41 | |
42 | 42 | $videoXml = $xml->xpath('//mets:xmlData')[0]; |
@@ -15,8 +15,7 @@ |
||
15 | 15 | use Kitodo\Dlf\Format\AudioVideoMD; |
16 | 16 | use TYPO3\TestingFramework\Core\Unit\UnitTestCase; |
17 | 17 | |
18 | -class AudioVideoMDTest extends UnitTestCase |
|
19 | -{ |
|
18 | +class AudioVideoMDTest extends UnitTestCase { |
|
20 | 19 | protected $metadata = []; |
21 | 20 | |
22 | 21 | public function setUp(): void |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | */ |
24 | 24 | public function getRawData(): void |
25 | 25 | { |
26 | - $xml = simplexml_load_file(__DIR__ . '/../../Fixtures/Format/alto.xml'); |
|
26 | + $xml = simplexml_load_file(__DIR__.'/../../Fixtures/Format/alto.xml'); |
|
27 | 27 | $alto = new Alto(); |
28 | 28 | |
29 | 29 | $rawText = $alto->getRawText($xml); |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | */ |
38 | 38 | public function getTextAsMiniOcr(): void |
39 | 39 | { |
40 | - $xml = simplexml_load_file(__DIR__ . '/../../Fixtures/Format/alto.xml'); |
|
40 | + $xml = simplexml_load_file(__DIR__.'/../../Fixtures/Format/alto.xml'); |
|
41 | 41 | $alto = new Alto(); |
42 | 42 | |
43 | 43 | $rawText = $alto->getTextAsMiniOcr($xml); |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | */ |
76 | 76 | public function getTextAsMiniOcrNoTextBlock(): void |
77 | 77 | { |
78 | - $xml = simplexml_load_file(__DIR__ . '/../../Fixtures/Format/altoNoTextBlock.xml'); |
|
78 | + $xml = simplexml_load_file(__DIR__.'/../../Fixtures/Format/altoNoTextBlock.xml'); |
|
79 | 79 | $alto = new Alto(); |
80 | 80 | |
81 | 81 | $rawText = $alto->getTextAsMiniOcr($xml); |
@@ -89,7 +89,7 @@ discard block |
||
89 | 89 | */ |
90 | 90 | public function getTextAsMiniOcrNoTextline(): void |
91 | 91 | { |
92 | - $xml = simplexml_load_file(__DIR__ . '/../../Fixtures/Format/altoNoTextLine.xml'); |
|
92 | + $xml = simplexml_load_file(__DIR__.'/../../Fixtures/Format/altoNoTextLine.xml'); |
|
93 | 93 | $alto = new Alto(); |
94 | 94 | |
95 | 95 | $rawText = $alto->getTextAsMiniOcr($xml); |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | */ |
104 | 104 | public function getTextAsMiniOcrNoString(): void |
105 | 105 | { |
106 | - $xml = simplexml_load_file(__DIR__ . '/../../Fixtures/Format/altoNoString.xml'); |
|
106 | + $xml = simplexml_load_file(__DIR__.'/../../Fixtures/Format/altoNoString.xml'); |
|
107 | 107 | $alto = new Alto(); |
108 | 108 | |
109 | 109 | $rawText = $alto->getTextAsMiniOcr($xml); |
@@ -15,8 +15,7 @@ |
||
15 | 15 | use Kitodo\Dlf\Format\Alto; |
16 | 16 | use TYPO3\TestingFramework\Core\Unit\UnitTestCase; |
17 | 17 | |
18 | -class AltoTest extends UnitTestCase |
|
19 | -{ |
|
18 | +class AltoTest extends UnitTestCase { |
|
20 | 19 | /** |
21 | 20 | * @test |
22 | 21 | * @group extract data |
@@ -14,8 +14,7 @@ |
||
14 | 14 | |
15 | 15 | use TYPO3\TestingFramework\Core\Unit\UnitTestCase; |
16 | 16 | |
17 | -class TeiHeaderTest extends UnitTestCase |
|
18 | -{ |
|
17 | +class TeiHeaderTest extends UnitTestCase { |
|
19 | 18 | protected $metadata = []; |
20 | 19 | |
21 | 20 | public function setUp(): void |
@@ -15,10 +15,8 @@ |
||
15 | 15 | use Kitodo\Dlf\Common\Helper; |
16 | 16 | use TYPO3\TestingFramework\Core\Unit\UnitTestCase; |
17 | 17 | |
18 | -class HelperTest extends UnitTestCase |
|
19 | -{ |
|
20 | - public function assertInvalidXml($xml) |
|
21 | - { |
|
18 | +class HelperTest extends UnitTestCase { |
|
19 | + public function assertInvalidXml($xml) { |
|
22 | 20 | $result = Helper::getXmlFileAsString($xml); |
23 | 21 | self::assertEquals(false, $result); |
24 | 22 | } |
@@ -20,7 +20,7 @@ discard block |
||
20 | 20 | public function assertInvalidXml($xml) |
21 | 21 | { |
22 | 22 | $result = Helper::getXmlFileAsString($xml); |
23 | - self::assertEquals(false, $result); |
|
23 | + self::assertEquals(FALSE, $result); |
|
24 | 24 | } |
25 | 25 | |
26 | 26 | /** |
@@ -29,8 +29,8 @@ discard block |
||
29 | 29 | */ |
30 | 30 | public function invalidXmlYieldsFalse(): void |
31 | 31 | { |
32 | - self::assertInvalidXml(false); |
|
33 | - self::assertInvalidXml(null); |
|
32 | + self::assertInvalidXml(FALSE); |
|
33 | + self::assertInvalidXml(NULL); |
|
34 | 34 | self::assertInvalidXml(1); |
35 | 35 | self::assertInvalidXml([]); |
36 | 36 | self::assertInvalidXml(new \stdClass()); |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | <root> |
51 | 51 | <single /> |
52 | 52 | </root> |
53 | -XML; |
|
53 | +xml; |
|
54 | 54 | $node = Helper::getXmlFileAsString($xml); |
55 | 55 | self::assertIsObject($node); |
56 | 56 | self::assertEquals('root', $node->getName()); |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | { |
37 | 37 | parent::tearDown(); |
38 | 38 | |
39 | - unlink(__DIR__ . '/../../Fixtures/Repository/tokenTemp.csv'); |
|
39 | + unlink(__DIR__.'/../../Fixtures/Repository/tokenTemp.csv'); |
|
40 | 40 | } |
41 | 41 | |
42 | 42 | /** |
@@ -45,8 +45,8 @@ discard block |
||
45 | 45 | */ |
46 | 46 | public function deleteExpiredTokens(): void |
47 | 47 | { |
48 | - $inputCsvFile = __DIR__ . '/../../Fixtures/Repository/token.csv'; |
|
49 | - $outputCsvFile = __DIR__ . '/../../Fixtures/Repository/tokenTemp.csv'; |
|
48 | + $inputCsvFile = __DIR__.'/../../Fixtures/Repository/token.csv'; |
|
49 | + $outputCsvFile = __DIR__.'/../../Fixtures/Repository/tokenTemp.csv'; |
|
50 | 50 | |
51 | 51 | $inputCsvData = file_get_contents($inputCsvFile); |
52 | 52 | $csvData = str_getcsv($inputCsvData, "\n"); |
@@ -15,8 +15,7 @@ |
||
15 | 15 | use Kitodo\Dlf\Domain\Repository\TokenRepository; |
16 | 16 | use Kitodo\Dlf\Tests\Functional\FunctionalTestCase; |
17 | 17 | |
18 | -class TokenRepositoryTest extends FunctionalTestCase |
|
19 | -{ |
|
18 | +class TokenRepositoryTest extends FunctionalTestCase { |
|
20 | 19 | /** |
21 | 20 | * @var TokenRepository |
22 | 21 | */ |