Passed
Pull Request — master (#123)
by
unknown
11:14
created
Classes/Hooks/ThumbnailCustomElement.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,8 +22,7 @@
 block discarded – undo
22 22
  *
23 23
  * @access public
24 24
  */
25
-class ThumbnailCustomElement extends AbstractFormElement
26
-{
25
+class ThumbnailCustomElement extends AbstractFormElement {
27 26
 
28 27
     /**
29 28
      * Renders thumbnail custom element.
Please login to merge, or discard this patch.
Classes/Updates/MigrateSettings.php 2 patches
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,8 +26,7 @@
 block discarded – undo
26 26
  *
27 27
  * @internal
28 28
  */
29
-class MigrateSettings implements UpgradeWizardInterface
30
-{
29
+class MigrateSettings implements UpgradeWizardInterface {
31 30
 
32 31
     /**
33 32
      * Return the identifier for this wizard
Please login to merge, or discard this patch.
Upper-Lower-Casing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -108,11 +108,11 @@  discard block
 block discarded – undo
108 108
 
109 109
             // exit if at least one update statement is not successful
110 110
             if (!((bool) $updateResult)) {
111
-                return false;
111
+                return FALSE;
112 112
             }
113 113
         }
114 114
 
115
-        return true;
115
+        return TRUE;
116 116
     }
117 117
 
118 118
     /**
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
      */
127 127
     public function updateNecessary(): bool
128 128
     {
129
-        $oldSettingsFound = false;
129
+        $oldSettingsFound = FALSE;
130 130
 
131 131
         $connection = GeneralUtility::makeInstance(ConnectionPool::class)->getConnectionForTable('tt_content');
132 132
 
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
         // Update the found record sets
145 145
         while ($record = $statement->fetchAssociative()) {
146 146
             $oldSettingsFound = $this->checkForOldSettings($record['pi_flexform']);
147
-            if ($oldSettingsFound === true) {
147
+            if ($oldSettingsFound === TRUE) {
148 148
                 // We found at least one field to be updated --> break here
149 149
                 break;
150 150
             }
@@ -187,7 +187,7 @@  discard block
 block discarded – undo
187 187
 
188 188
         foreach ($fields as $field) {
189 189
             // change the index attribute if it doesn't start with 'settings.' yet
190
-            if (strpos($field['index'], 'settings.') === false) {
190
+            if (strpos($field['index'], 'settings.') === FALSE) {
191 191
                 $field['index'] = 'settings.' . $field['index'];
192 192
             }
193 193
         }
Please login to merge, or discard this patch.
Classes/Updates/FileLocationUpdater.php 3 patches
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -190,9 +190,9 @@  discard block
 block discarded – undo
190 190
                             $queryBuilder->createNamedParameter('', \PDO::PARAM_STR)
191 191
                         ),
192 192
                         $queryBuilder->expr()->comparison(
193
-                            'CAST(CAST(' . $queryBuilder->quoteIdentifier($this->fieldsToMigrate[$table]) . ' AS DECIMAL) AS CHAR)',
193
+                            'CAST(CAST('.$queryBuilder->quoteIdentifier($this->fieldsToMigrate[$table]).' AS DECIMAL) AS CHAR)',
194 194
                             ExpressionBuilder::NEQ,
195
-                            'CAST(' . $queryBuilder->quoteIdentifier($this->fieldsToMigrate[$table]) . ' AS CHAR)'
195
+                            'CAST('.$queryBuilder->quoteIdentifier($this->fieldsToMigrate[$table]).' AS CHAR)'
196 196
                         )
197 197
                     )
198 198
                     ->orderBy('uid')
@@ -205,7 +205,7 @@  discard block
 block discarded – undo
205 205
                 }
206 206
             } catch (Exception $e) {
207 207
                 throw new \RuntimeException(
208
-                    'Database query failed. Error was: ' . $e->getPrevious()->getMessage(),
208
+                    'Database query failed. Error was: '.$e->getPrevious()->getMessage(),
209 209
                     1511950673
210 210
                 );
211 211
             }
@@ -271,7 +271,7 @@  discard block
 block discarded – undo
271 271
         $connectionPool = GeneralUtility::makeInstance(ConnectionPool::class);
272 272
 
273 273
         $fileUid = null;
274
-        $sourcePath = Environment::getPublicPath() . '/' . $fieldItem;
274
+        $sourcePath = Environment::getPublicPath().'/'.$fieldItem;
275 275
 
276 276
         // maybe the file was already moved, so check if the original file still exists
277 277
         if (file_exists($sourcePath)) {
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -171,8 +171,7 @@
 block discarded – undo
171 171
      *
172 172
      * @throws \RuntimeException
173 173
      */
174
-    protected function getRecordsFromTable(bool $countOnly = false)
175
-    {
174
+    protected function getRecordsFromTable(bool $countOnly = false) {
176 175
         $connectionPool = GeneralUtility::makeInstance(ConnectionPool::class);
177 176
         $allResults = [];
178 177
         $numResults = 0;
Please login to merge, or discard this patch.
Upper-Lower-Casing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -105,11 +105,11 @@  discard block
 block discarded – undo
105 105
     public function updateNecessary(): bool
106 106
     {
107 107
         /** @var int */
108
-        $numRecords = $this->getRecordsFromTable(true);
108
+        $numRecords = $this->getRecordsFromTable(TRUE);
109 109
         if ($numRecords > 0) {
110
-            return true;
110
+            return TRUE;
111 111
         }
112
-        return false;
112
+        return FALSE;
113 113
     }
114 114
 
115 115
     /**
@@ -145,16 +145,16 @@  discard block
 block discarded – undo
145 145
      */
146 146
     public function executeUpdate(): bool
147 147
     {
148
-        $result = true;
148
+        $result = TRUE;
149 149
         try {
150 150
             /** @var int */
151
-            $numRecords = $this->getRecordsFromTable(true);
151
+            $numRecords = $this->getRecordsFromTable(TRUE);
152 152
             if ($numRecords > 0) {
153 153
                 $this->performUpdate();
154 154
             }
155 155
         } catch (\Exception $e) {
156 156
             // If something goes wrong, migrateField() logs an error
157
-            $result = false;
157
+            $result = FALSE;
158 158
         }
159 159
         return $result;
160 160
     }
@@ -171,7 +171,7 @@  discard block
 block discarded – undo
171 171
      *
172 172
      * @throws \RuntimeException
173 173
      */
174
-    protected function getRecordsFromTable(bool $countOnly = false)
174
+    protected function getRecordsFromTable(bool $countOnly = FALSE)
175 175
     {
176 176
         $connectionPool = GeneralUtility::makeInstance(ConnectionPool::class);
177 177
         $allResults = [];
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
                     ->orderBy('uid')
199 199
                     ->execute()
200 200
                     ->fetchAllAssociative();
201
-                if ($countOnly === true) {
201
+                if ($countOnly === TRUE) {
202 202
                     $numResults += count($result);
203 203
                 } else {
204 204
                     $allResults[$table] = $result;
@@ -211,7 +211,7 @@  discard block
 block discarded – undo
211 211
             }
212 212
         }
213 213
 
214
-        if ($countOnly === true) {
214
+        if ($countOnly === TRUE) {
215 215
             return $numResults;
216 216
         } else {
217 217
             return $allResults;
@@ -228,7 +228,7 @@  discard block
 block discarded – undo
228 228
      */
229 229
     protected function performUpdate(): bool
230 230
     {
231
-        $result = true;
231
+        $result = TRUE;
232 232
 
233 233
         try {
234 234
             $storages = GeneralUtility::makeInstance(StorageRepository::class)->findAll();
@@ -241,7 +241,7 @@  discard block
 block discarded – undo
241 241
                 }
242 242
             }
243 243
         } catch (\Exception $e) {
244
-            $result = false;
244
+            $result = FALSE;
245 245
         }
246 246
 
247 247
         return $result;
@@ -270,7 +270,7 @@  discard block
 block discarded – undo
270 270
         $storageUid = (int) $this->storage->getUid();
271 271
         $connectionPool = GeneralUtility::makeInstance(ConnectionPool::class);
272 272
 
273
-        $fileUid = null;
273
+        $fileUid = NULL;
274 274
         $sourcePath = Environment::getPublicPath() . '/' . $fieldItem;
275 275
 
276 276
         // maybe the file was already moved, so check if the original file still exists
Please login to merge, or discard this patch.
Classes/ExpressionLanguage/DocumentTypeProvider.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -22,8 +22,7 @@  discard block
 block discarded – undo
22 22
  *
23 23
  * @access public
24 24
  */
25
-class DocumentTypeProvider extends AbstractProvider
26
-{
25
+class DocumentTypeProvider extends AbstractProvider {
27 26
     /**
28 27
      * Construct the instance
29 28
      *
@@ -31,8 +30,7 @@  discard block
 block discarded – undo
31 30
      *
32 31
      * @return void
33 32
      */
34
-    public function __construct()
35
-    {
33
+    public function __construct() {
36 34
         $this->expressionLanguageProviders = [
37 35
             DocumentTypeFunctionProvider::class
38 36
         ];
Please login to merge, or discard this patch.
Classes/ExpressionLanguage/DocumentTypeFunctionProvider.php 3 patches
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
                 if ($this->document) {
182 182
                     $doc = AbstractDocument::getInstance($this->document->getLocation(), ['storagePid' => $pid], true);
183 183
                 } else {
184
-                    $this->logger->error('Invalid UID "' . $requestData['id'] . '" or PID "' . $pid . '" for document loading');
184
+                    $this->logger->error('Invalid UID "'.$requestData['id'].'" or PID "'.$pid.'" for document loading');
185 185
                 }
186 186
             } else if (GeneralUtility::isValidUrl($requestData['id'])) {
187 187
 
@@ -199,7 +199,7 @@  discard block
 block discarded – undo
199 199
 
200 200
                     $this->document->setLocation($requestData['id']);
201 201
                 } else {
202
-                    $this->logger->error('Invalid location given "' . $requestData['id'] . '" for document loading');
202
+                    $this->logger->error('Invalid location given "'.$requestData['id'].'" for document loading');
203 203
                 }
204 204
             }
205 205
 
@@ -216,11 +216,11 @@  discard block
 block discarded – undo
216 216
                 if ($doc !== null) {
217 217
                     $this->document->setCurrentDocument($doc);
218 218
                 } else {
219
-                    $this->logger->error('Failed to load document with record ID "' . $requestData['recordId'] . '"');
219
+                    $this->logger->error('Failed to load document with record ID "'.$requestData['recordId'].'"');
220 220
                 }
221 221
             }
222 222
         } else {
223
-            $this->logger->error('Empty UID or invalid PID "' . $pid . '" for document loading');
223
+            $this->logger->error('Empty UID or invalid PID "'.$pid.'" for document loading');
224 224
         }
225 225
     }
226 226
 }
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -116,12 +116,10 @@
 block discarded – undo
116 116
     {
117 117
         return new ExpressionFunction(
118 118
             'getDocumentType',
119
-            function()
120
-            {
119
+            function() {
121 120
                 // Not implemented, we only use the evaluator
122 121
             },
123
-            function($arguments, $cPid)
124
-            {
122
+            function($arguments, $cPid) {
125 123
                 /** @var RequestWrapper $requestWrapper */
126 124
                 $requestWrapper = $arguments['request'];
127 125
                 $queryParams = $requestWrapper->getQueryParams();
Please login to merge, or discard this patch.
Upper-Lower-Casing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
 
137 137
                 // Load document with current plugin parameters.
138 138
                 $this->loadDocument($queryParams['tx_dlf'], $cPid);
139
-                if ($this->document === null || $this->document->getCurrentDocument() === null) {
139
+                if ($this->document === NULL || $this->document->getCurrentDocument() === NULL) {
140 140
                     return $type;
141 141
                 }
142 142
                 // Set PID for metadata definitions.
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
                     // Calendar plugin does not support IIIF (yet). Abort for all newspaper related types.
148 148
                     if (
149 149
                         $this->document->getCurrentDocument() instanceof IiifManifest
150
-                        && array_search($metadata['type'][0], ['newspaper', 'ephemera', 'year', 'issue']) !== false
150
+                        && array_search($metadata['type'][0], ['newspaper', 'ephemera', 'year', 'issue']) !== FALSE
151 151
                     ) {
152 152
                         return $type;
153 153
                     }
@@ -174,25 +174,25 @@  discard block
 block discarded – undo
174 174
 
175 175
             $this->initializeRepositories($pid);
176 176
 
177
-            $doc = null;
177
+            $doc = NULL;
178 178
             if (MathUtility::canBeInterpretedAsInteger($requestData['id'])) {
179 179
                 // find document from repository by uid
180 180
                 $this->document = $this->documentRepository->findOneByIdAndSettings((int) $requestData['id'], ['storagePid' => $pid]);
181 181
                 if ($this->document) {
182
-                    $doc = AbstractDocument::getInstance($this->document->getLocation(), ['storagePid' => $pid], true);
182
+                    $doc = AbstractDocument::getInstance($this->document->getLocation(), ['storagePid' => $pid], TRUE);
183 183
                 } else {
184 184
                     $this->logger->error('Invalid UID "' . $requestData['id'] . '" or PID "' . $pid . '" for document loading');
185 185
                 }
186 186
             } else if (GeneralUtility::isValidUrl($requestData['id'])) {
187 187
 
188
-                $doc = AbstractDocument::getInstance($requestData['id'], ['storagePid' => $pid], true);
188
+                $doc = AbstractDocument::getInstance($requestData['id'], ['storagePid' => $pid], TRUE);
189 189
 
190
-                if ($doc !== null) {
190
+                if ($doc !== NULL) {
191 191
                     if ($doc->recordId) {
192 192
                         $this->document = $this->documentRepository->findOneByRecordId($doc->recordId);
193 193
                     }
194 194
 
195
-                    if ($this->document === null) {
195
+                    if ($this->document === NULL) {
196 196
                         // create new dummy Document object
197 197
                         $this->document = GeneralUtility::makeInstance(Document::class);
198 198
                     }
@@ -203,7 +203,7 @@  discard block
 block discarded – undo
203 203
                 }
204 204
             }
205 205
 
206
-            if ($this->document !== null && $doc !== null) {
206
+            if ($this->document !== NULL && $doc !== NULL) {
207 207
                 $this->document->setCurrentDocument($doc);
208 208
             }
209 209
 
@@ -211,9 +211,9 @@  discard block
 block discarded – undo
211 211
 
212 212
             $this->document = $this->documentRepository->findOneByRecordId($requestData['recordId']);
213 213
 
214
-            if ($this->document !== null) {
215
-                $doc = AbstractDocument::getInstance($this->document->getLocation(), ['storagePid' => $pid], true);
216
-                if ($doc !== null) {
214
+            if ($this->document !== NULL) {
215
+                $doc = AbstractDocument::getInstance($this->document->getLocation(), ['storagePid' => $pid], TRUE);
216
+                if ($doc !== NULL) {
217 217
                     $this->document->setCurrentDocument($doc);
218 218
                 } else {
219 219
                     $this->logger->error('Failed to load document with record ID "' . $requestData['recordId'] . '"');
Please login to merge, or discard this patch.
Classes/Pagination/PageGridPagination.php 2 patches
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -18,15 +18,13 @@
 block discarded – undo
18 18
 use TYPO3\CMS\Core\Pagination\PaginatorInterface;
19 19
 
20 20
 
21
-final class PageGridPagination implements PaginationInterface
22
-{
21
+final class PageGridPagination implements PaginationInterface {
23 22
     /**
24 23
      * @var PageGridPaginator
25 24
      */
26 25
     protected $paginator;
27 26
 
28
-    public function __construct(PaginatorInterface $paginator)
29
-    {
27
+    public function __construct(PaginatorInterface $paginator) {
30 28
         // @phpstan-ignore-next-line
31 29
         $this->paginator = $paginator;
32 30
     }
Please login to merge, or discard this patch.
Upper-Lower-Casing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -36,12 +36,12 @@  discard block
 block discarded – undo
36 36
         $previousPage = (int) (($this->paginator->getCurrentPageNumber() - 1) * $this->paginator->getPublicItemsPerPage()) - ($this->paginator->getPublicItemsPerPage() - 1);
37 37
 
38 38
         if ($previousPage > $this->paginator->getNumberOfPages()) {
39
-            return null;
39
+            return NULL;
40 40
         }
41 41
 
42 42
         return $previousPage >= $this->getFirstPageNumber()
43 43
             ? $previousPage
44
-            : null
44
+            : NULL
45 45
             ;
46 46
     }
47 47
 
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
 
52 52
         return $nextPage <= $this->paginator->getNumberOfPages()
53 53
             ? $nextPage
54
-            : null
54
+            : NULL
55 55
             ;
56 56
     }
57 57
 
Please login to merge, or discard this patch.
Classes/Pagination/PageGridPaginator.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,8 +16,7 @@
 block discarded – undo
16 16
 
17 17
 use TYPO3\CMS\Core\Pagination\AbstractPaginator;
18 18
 
19
-final class PageGridPaginator extends AbstractPaginator
20
-{
19
+final class PageGridPaginator extends AbstractPaginator {
21 20
     /**
22 21
      * @var array
23 22
      */
Please login to merge, or discard this patch.
Classes/Controller/AbstractController.php 3 patches
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -145,11 +145,11 @@  discard block
 block discarded – undo
145 145
                 if ($doc !== null) {
146 146
                     $this->document->setCurrentDocument($doc);
147 147
                 } else {
148
-                    $this->logger->error('Failed to load document with record ID "' . $this->requestData['recordId'] . '"');
148
+                    $this->logger->error('Failed to load document with record ID "'.$this->requestData['recordId'].'"');
149 149
                 }
150 150
             }
151 151
         } else {
152
-            $this->logger->error('Invalid ID "' . $documentId . '" or PID "' . $this->settings['storagePid'] . '" for document loading');
152
+            $this->logger->error('Invalid ID "'.$documentId.'" or PID "'.$this->settings['storagePid'].'" for document loading');
153 153
         }
154 154
     }
155 155
 
@@ -245,7 +245,7 @@  discard block
 block discarded – undo
245 245
             && !MathUtility::canBeInterpretedAsInteger($this->requestData['id'])
246 246
             && !GeneralUtility::isValidUrl($this->requestData['id'])
247 247
         ) {
248
-            $this->logger->warning('Invalid ID or URI "' . $this->requestData['id'] . '" for document loading');
248
+            $this->logger->warning('Invalid ID or URI "'.$this->requestData['id'].'" for document loading');
249 249
             unset($this->requestData['id']);
250 250
         }
251 251
 
@@ -331,7 +331,7 @@  discard block
 block discarded – undo
331 331
         $pages = [];
332 332
         $pagesSect = [];
333 333
         $aRange = [];
334
-        $nRange = 5;    // ToDo: should be made configurable
334
+        $nRange = 5; // ToDo: should be made configurable
335 335
 
336 336
         // lower limit of the range
337 337
         $nBottom = $currentPageNumber - $nRange;
@@ -346,7 +346,7 @@  discard block
 block discarded – undo
346 346
 
347 347
         // check whether the first screen page is > 1, if yes then points must be added
348 348
         if ($aRange[0] > 1) {
349
-            array_push($pagesSect, ['label' => '...','startRecordNumber' => '...']);
349
+            array_push($pagesSect, ['label' => '...', 'startRecordNumber' => '...']);
350 350
         };
351 351
         $lastStartRecordNumberGrid = 0; // due to validity outside the loop
352 352
         foreach (range($firstPage, $lastPage) as $i) {
@@ -389,7 +389,7 @@  discard block
 block discarded – undo
389 389
 
390 390
                 // Check if screen page is in range
391 391
                 if (in_array($i, $aRange)) {
392
-                    array_push($pagesSect, ['label' => $i,'startRecordNumber' => $startRecordNumber]);
392
+                    array_push($pagesSect, ['label' => $i, 'startRecordNumber' => $startRecordNumber]);
393 393
                 };
394 394
             };
395 395
         };
@@ -451,7 +451,7 @@  discard block
 block discarded – undo
451 451
         if ($this->document) {
452 452
             $doc = AbstractDocument::getInstance($this->document->getLocation(), $this->settings, true);
453 453
         } else {
454
-            $this->logger->error('Invalid UID "' . $documentId . '" or PID "' . $this->settings['storagePid'] . '" for document loading');
454
+            $this->logger->error('Invalid UID "'.$documentId.'" or PID "'.$this->settings['storagePid'].'" for document loading');
455 455
         }
456 456
 
457 457
         return $doc;
@@ -489,7 +489,7 @@  discard block
 block discarded – undo
489 489
 
490 490
             $this->document->setLocation($documentId);
491 491
         } else {
492
-            $this->logger->error('Invalid location given "' . $documentId . '" for document loading');
492
+            $this->logger->error('Invalid location given "'.$documentId.'" for document loading');
493 493
         }
494 494
 
495 495
         return $doc;
Please login to merge, or discard this patch.
Braces   +9 added lines, -12 removed lines patch added patch discarded remove patch
@@ -35,8 +35,7 @@  discard block
 block discarded – undo
35 35
  *
36 36
  * @abstract
37 37
  */
38
-abstract class AbstractController extends ActionController implements LoggerAwareInterface
39
-{
38
+abstract class AbstractController extends ActionController implements LoggerAwareInterface {
40 39
     use LoggerAwareTrait;
41 40
 
42 41
     /**
@@ -222,8 +221,7 @@  discard block
 block discarded – undo
222 221
      *
223 222
      * @return null|string|array
224 223
      */
225
-    protected function getParametersSafely(string $parameterName)
226
-    {
224
+    protected function getParametersSafely(string $parameterName) {
227 225
         if ($this->request->hasArgument($parameterName)) {
228 226
             return $this->request->getArgument($parameterName);
229 227
         }
@@ -310,8 +308,7 @@  discard block
 block discarded – undo
310 308
      *
311 309
      * @return void
312 310
      */
313
-    public function __construct()
314
-    {
311
+    public function __construct() {
315 312
         $this->initialize();
316 313
     }
317 314
 
@@ -351,7 +348,8 @@  discard block
 block discarded – undo
351 348
         $lastStartRecordNumberGrid = 0; // due to validity outside the loop
352 349
         foreach (range($firstPage, $lastPage) as $i) {
353 350
             // detect which pagination is active: ListView or GridView
354
-            if (get_class($pagination) == 'TYPO3\CMS\Core\Pagination\SimplePagination') {  // ListView
351
+            if (get_class($pagination) == 'TYPO3\CMS\Core\Pagination\SimplePagination') {
352
+// ListView
355 353
                 $lastStartRecordNumberGrid = $i; // save last $startRecordNumber for LastPage button
356 354
 
357 355
                 $pages[$i] = [
@@ -364,7 +362,8 @@  discard block
 block discarded – undo
364 362
                 if (in_array($i, $aRange)) {
365 363
                     array_push($pagesSect, ['label' => $i, 'startRecordNumber' => $i]);
366 364
                 };
367
-            } else { // GridView
365
+            } else {
366
+// GridView
368 367
                 // to calculate the values for generation the links for the pagination pages
369 368
                 /** @var \Kitodo\Dlf\Pagination\PageGridPaginator $paginator */
370 369
                 $itemsPerPage = $paginator->getPublicItemsPerPage();
@@ -443,8 +442,7 @@  discard block
 block discarded – undo
443 442
      *
444 443
      * @return AbstractDocument
445 444
      */
446
-    private function getDocumentByUid(int $documentId)
447
-    {
445
+    private function getDocumentByUid(int $documentId) {
448 446
         $doc = null;
449 447
         $this->document = $this->documentRepository->findOneByIdAndSettings($documentId);
450 448
 
@@ -466,8 +464,7 @@  discard block
 block discarded – undo
466 464
      *
467 465
      * @return AbstractDocument
468 466
      */
469
-    private function getDocumentByUrl(string $documentId)
470
-    {
467
+    private function getDocumentByUrl(string $documentId) {
471 468
         $doc = AbstractDocument::getInstance($documentId, $this->settings, true);
472 469
 
473 470
         if ($doc !== null) {
Please login to merge, or discard this patch.
Upper-Lower-Casing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
      * @access protected
62 62
      * @var Document|null This holds the current document
63 63
      */
64
-    protected ?Document $document = null;
64
+    protected ?Document $document = NULL;
65 65
 
66 66
     /**
67 67
      * @access protected
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
         // Try to get document format from database
132 132
         if (!empty($documentId)) {
133 133
 
134
-            $doc = null;
134
+            $doc = NULL;
135 135
 
136 136
             if (MathUtility::canBeInterpretedAsInteger($documentId)) {
137 137
                 $doc = $this->getDocumentByUid($documentId);
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
                 $doc = $this->getDocumentByUrl($documentId);
140 140
             }
141 141
 
142
-            if ($this->document !== null && $doc !== null) {
142
+            if ($this->document !== NULL && $doc !== NULL) {
143 143
                 $this->document->setCurrentDocument($doc);
144 144
             }
145 145
 
@@ -147,9 +147,9 @@  discard block
 block discarded – undo
147 147
 
148 148
             $this->document = $this->documentRepository->findOneByRecordId($this->requestData['recordId']);
149 149
 
150
-            if ($this->document !== null) {
151
-                $doc = AbstractDocument::getInstance($this->document->getLocation(), $this->settings, true);
152
-                if ($doc !== null) {
150
+            if ($this->document !== NULL) {
151
+                $doc = AbstractDocument::getInstance($this->document->getLocation(), $this->settings, TRUE);
152
+                if ($doc !== NULL) {
153 153
                     $this->document->setCurrentDocument($doc);
154 154
                 } else {
155 155
                     $this->logger->error('Failed to load document with record ID "' . $this->requestData['recordId'] . '"');
@@ -205,7 +205,7 @@  discard block
 block discarded – undo
205 205
      */
206 206
     protected function isDocMissing(): bool
207 207
     {
208
-        return $this->document === null || $this->document->getCurrentDocument() === null;
208
+        return $this->document === NULL || $this->document->getCurrentDocument() === NULL;
209 209
     }
210 210
 
211 211
     /**
@@ -234,7 +234,7 @@  discard block
 block discarded – undo
234 234
         if ($this->request->hasArgument($parameterName)) {
235 235
             return $this->request->getArgument($parameterName);
236 236
         }
237
-        return null;
237
+        return NULL;
238 238
     }
239 239
 
240 240
     /**
@@ -407,8 +407,8 @@  discard block
 block discarded – undo
407 407
         };
408 408
 
409 409
         // Safely get the next and previous page numbers
410
-        $nextPageNumber = isset($pages[$currentPageNumber + 1]) ? $pages[$currentPageNumber + 1]['startRecordNumber'] : null;
411
-        $previousPageNumber = isset($pages[$currentPageNumber - 1]) ? $pages[$currentPageNumber - 1]['startRecordNumber'] : null;
410
+        $nextPageNumber = isset($pages[$currentPageNumber + 1]) ? $pages[$currentPageNumber + 1]['startRecordNumber'] : NULL;
411
+        $previousPageNumber = isset($pages[$currentPageNumber - 1]) ? $pages[$currentPageNumber - 1]['startRecordNumber'] : NULL;
412 412
 
413 413
         // 'startRecordNumber' is not required in GridView, only the variant for each loop is required
414 414
         // 'endRecordNumber' is not required in both views
@@ -453,11 +453,11 @@  discard block
 block discarded – undo
453 453
      */
454 454
     private function getDocumentByUid(int $documentId)
455 455
     {
456
-        $doc = null;
456
+        $doc = NULL;
457 457
         $this->document = $this->documentRepository->findOneByIdAndSettings($documentId);
458 458
 
459 459
         if ($this->document) {
460
-            $doc = AbstractDocument::getInstance($this->document->getLocation(), $this->settings, true);
460
+            $doc = AbstractDocument::getInstance($this->document->getLocation(), $this->settings, TRUE);
461 461
         } else {
462 462
             $this->logger->error('Invalid UID "' . $documentId . '" or PID "' . $this->settings['storagePid'] . '" for document loading');
463 463
         }
@@ -476,15 +476,15 @@  discard block
 block discarded – undo
476 476
      */
477 477
     private function getDocumentByUrl(string $documentId)
478 478
     {
479
-        $doc = AbstractDocument::getInstance($documentId, $this->settings, true);
479
+        $doc = AbstractDocument::getInstance($documentId, $this->settings, TRUE);
480 480
 
481
-        if ($doc !== null) {
481
+        if ($doc !== NULL) {
482 482
             $this->document = GeneralUtility::makeInstance(Document::class);
483 483
 
484 484
             if ($doc->recordId) {
485 485
                 // find document from repository by recordId
486 486
                 $docFromRepository = $this->documentRepository->findOneByRecordId($doc->recordId);
487
-                if ($docFromRepository !== null) {
487
+                if ($docFromRepository !== NULL) {
488 488
                     $this->document = $docFromRepository;
489 489
                 }
490 490
             }
Please login to merge, or discard this patch.
Classes/Controller/OaiPmhController.php 3 patches
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -250,10 +250,10 @@  discard block
 block discarded – undo
250 250
             if ($root->item(0) instanceof \DOMNode) {
251 251
                 $mets = $xml->saveXML($root->item(0));
252 252
             } else {
253
-                $this->logger->error('No METS part found in document with location "' . $record['location'] . '"');
253
+                $this->logger->error('No METS part found in document with location "'.$record['location'].'"');
254 254
             }
255 255
         } else {
256
-            $this->logger->error('Could not load XML file from "' . $record['location'] . '"');
256
+            $this->logger->error('Could not load XML file from "'.$record['location'].'"');
257 257
         }
258 258
         return $mets;
259 259
     }
@@ -421,7 +421,7 @@  discard block
 block discarded – undo
421 421
             $pageSettings = $this->configurationManager->getConfiguration($this->configurationManager::CONFIGURATION_TYPE_FULL_TYPOSCRIPT);
422 422
             $storagePid = $pageSettings["plugin."]["tx_dlf."]["persistence."]["storagePid"];
423 423
             if ($storagePid > 0) {
424
-                $this->logger->notice('No records found with PID ' . $storagePid);
424
+                $this->logger->notice('No records found with PID '.$storagePid);
425 425
             } else {
426 426
                 $this->logger->notice('No records found');
427 427
             }
@@ -504,7 +504,7 @@  discard block
 block discarded – undo
504 504
             if (!empty($resArray)) {
505 505
                 // check, if all required fields are available for a given identifier
506 506
                 foreach ($details['requiredFields'] as $required) {
507
-                    $methodName = 'get' . GeneralUtility::underscoredToUpperCamelCase($required);
507
+                    $methodName = 'get'.GeneralUtility::underscoredToUpperCamelCase($required);
508 508
                     if (empty($resArray->$methodName())) {
509 509
                         // Skip metadata formats whose requirements are not met.
510 510
                         continue 2;
@@ -610,9 +610,9 @@  discard block
 block discarded – undo
610 610
             $resArray = $result->fetchAssociative();
611 611
             if ($resArray) {
612 612
                 if ($resArray['index_query'] != "") {
613
-                    $solrQuery .= '(' . $resArray['index_query'] . ')';
613
+                    $solrQuery .= '('.$resArray['index_query'].')';
614 614
                 } else {
615
-                    $solrQuery .= 'collection:' . '"' . $resArray['index_name'] . '"';
615
+                    $solrQuery .= 'collection:'.'"'.$resArray['index_name'].'"';
616 616
                 }
617 617
             } else {
618 618
                 $this->error = 'noSetHierarchy';
@@ -624,7 +624,7 @@  discard block
 block discarded – undo
624 624
         }
625 625
         // Check for required fields.
626 626
         foreach ($this->formats[$this->parameters['metadataPrefix']]['requiredFields'] as $required) {
627
-            $solrQuery .= ' NOT ' . $required . ':""';
627
+            $solrQuery .= ' NOT '.$required.':""';
628 628
         }
629 629
         // toplevel="true" is always required
630 630
         $solrQuery .= ' AND toplevel:true';
@@ -638,7 +638,7 @@  discard block
 block discarded – undo
638 638
             return $documentSet;
639 639
         }
640 640
 
641
-        $solrQuery .= ' AND timestamp:[' . $from . ' TO ' . $until . ']';
641
+        $solrQuery .= ' AND timestamp:['.$from.' TO '.$until.']';
642 642
 
643 643
         $solr = Solr::getInstance($this->settings['solrcore']);
644 644
         if (!$solr->ready) {
@@ -729,7 +729,7 @@  discard block
 block discarded – undo
729 729
      */
730 730
     private function getDate(string $dateType)
731 731
     {
732
-        return strptime($this->parameters[$dateType], '%Y-%m-%dT%H:%M:%SZ') ?: strptime($this->parameters[$dateType], '%Y-%m-%d');
732
+        return strptime($this->parameters[$dateType], '%Y-%m-%dT%H:%M:%SZ') ? : strptime($this->parameters[$dateType], '%Y-%m-%d');
733 733
     }
734 734
 
735 735
     /**
@@ -752,7 +752,7 @@  discard block
 block discarded – undo
752 752
             $date['tm_mday'],
753 753
             $date['tm_year'] + 1900
754 754
         );
755
-        return date("Y-m-d", $timestamp) . 'T' . date("H:i:s", $timestamp) . $end;
755
+        return date("Y-m-d", $timestamp).'T'.date("H:i:s", $timestamp).$end;
756 756
     }
757 757
 
758 758
     /**
@@ -865,7 +865,7 @@  discard block
 block discarded – undo
865 865
         $resumptionTokenInfo['cursor'] = $currentCursor;
866 866
         $resumptionTokenInfo['completeListSize'] = $documentListSet['metadata']['completeListSize'];
867 867
         $expireDateTime = new \DateTime();
868
-        $expireDateTime->add(new \DateInterval('PT' . $this->settings['expired'] . 'S'));
868
+        $expireDateTime->add(new \DateInterval('PT'.$this->settings['expired'].'S'));
869 869
         $resumptionTokenInfo['expired'] = $expireDateTime;
870 870
 
871 871
         $omitResumptionToken = $currentCursor === 0 && $numShownDocuments >= $documentListSet['metadata']['completeListSize'];
Please login to merge, or discard this patch.
Braces   +20 added lines, -40 removed lines patch added patch discarded remove patch
@@ -26,8 +26,7 @@  discard block
 block discarded – undo
26 26
  *
27 27
  * @access public
28 28
  */
29
-class OaiPmhController extends AbstractController
30
-{
29
+class OaiPmhController extends AbstractController {
31 30
     /**
32 31
      * @access protected
33 32
      * @var TokenRepository
@@ -41,8 +40,7 @@  discard block
 block discarded – undo
41 40
      *
42 41
      * @return void
43 42
      */
44
-    public function injectTokenRepository(TokenRepository $tokenRepository)
45
-    {
43
+    public function injectTokenRepository(TokenRepository $tokenRepository) {
46 44
         $this->tokenRepository = $tokenRepository;
47 45
     }
48 46
 
@@ -59,8 +57,7 @@  discard block
 block discarded – undo
59 57
      *
60 58
      * @return void
61 59
      */
62
-    public function injectCollectionRepository(CollectionRepository $collectionRepository)
63
-    {
60
+    public function injectCollectionRepository(CollectionRepository $collectionRepository) {
64 61
         $this->collectionRepository = $collectionRepository;
65 62
     }
66 63
 
@@ -77,8 +74,7 @@  discard block
 block discarded – undo
77 74
      *
78 75
      * @return void
79 76
      */
80
-    public function injectLibraryRepository(LibraryRepository $libraryRepository)
81
-    {
77
+    public function injectLibraryRepository(LibraryRepository $libraryRepository) {
82 78
         $this->libraryRepository = $libraryRepository;
83 79
     }
84 80
 
@@ -89,8 +85,7 @@  discard block
 block discarded – undo
89 85
      *
90 86
      * @return void
91 87
      */
92
-    public function initializeAction()
93
-    {
88
+    public function initializeAction() {
94 89
         $this->request->setFormat('xml');
95 90
     }
96 91
 
@@ -135,8 +130,7 @@  discard block
 block discarded – undo
135 130
      *
136 131
      * @return void
137 132
      */
138
-    protected function deleteExpiredTokens()
139
-    {
133
+    protected function deleteExpiredTokens() {
140 134
         // Delete expired resumption tokens.
141 135
         $this->tokenRepository->deleteExpiredTokens($this->settings['expired']);
142 136
     }
@@ -148,8 +142,7 @@  discard block
 block discarded – undo
148 142
      *
149 143
      * @return void
150 144
      */
151
-    protected function getUrlParams()
152
-    {
145
+    protected function getUrlParams() {
153 146
         $allowedParams = [
154 147
             'verb',
155 148
             'identifier',
@@ -179,8 +172,7 @@  discard block
 block discarded – undo
179 172
      *
180 173
      * @return array The mapped metadata array
181 174
      */
182
-    private function getDublinCoreData(array $record)
183
-    {
175
+    private function getDublinCoreData(array $record) {
184 176
         $metadata = [];
185 177
 
186 178
         $metadata[] = ['dc:identifier' => $record['record_id']];
@@ -222,8 +214,7 @@  discard block
 block discarded – undo
222 214
      *
223 215
      * @return void
224 216
      */
225
-    private function addDublinCoreData(&$metadata, $key, $value)
226
-    {
217
+    private function addDublinCoreData(&$metadata, $key, $value) {
227 218
         if (!empty($value)) {
228 219
             $metadata[] = [$key => $value];
229 220
         }
@@ -239,8 +230,7 @@  discard block
 block discarded – undo
239 230
      *
240 231
      * @return string The fetched METS XML
241 232
      */
242
-    protected function getMetsData(array $record)
243
-    {
233
+    protected function getMetsData(array $record) {
244 234
         $mets = null;
245 235
         // Load METS file.
246 236
         $xml = new \DOMDocument();
@@ -265,8 +255,7 @@  discard block
 block discarded – undo
265 255
      *
266 256
      * @return void
267 257
      */
268
-    public function mainAction()
269
-    {
258
+    public function mainAction() {
270 259
         // Get allowed GET and POST variables.
271 260
         $this->getUrlParams();
272 261
 
@@ -333,8 +322,7 @@  discard block
 block discarded – undo
333 322
      *
334 323
      * @return void
335 324
      */
336
-    protected function verbGetRecord()
337
-    {
325
+    protected function verbGetRecord() {
338 326
         if (count($this->parameters) !== 3 || empty($this->parameters['metadataPrefix']) || empty($this->parameters['identifier'])) {
339 327
             $this->error = 'badArgument';
340 328
             return;
@@ -386,8 +374,7 @@  discard block
 block discarded – undo
386 374
      *
387 375
      * @return void
388 376
      */
389
-    protected function verbIdentify()
390
-    {
377
+    protected function verbIdentify() {
391 378
         $library = $this->libraryRepository->findByUid($this->settings['library']);
392 379
 
393 380
         $oaiIdentifyInfo = [];
@@ -436,8 +423,7 @@  discard block
 block discarded – undo
436 423
      *
437 424
      * @return void
438 425
      */
439
-    protected function verbListIdentifiers()
440
-    {
426
+    protected function verbListIdentifiers() {
441 427
         // If we have a resumption token we can continue our work
442 428
         if (!empty($this->parameters['resumptionToken'])) {
443 429
             // "resumptionToken" is an exclusive argument.
@@ -491,8 +477,7 @@  discard block
 block discarded – undo
491 477
      *
492 478
      * @return void
493 479
      */
494
-    protected function verbListMetadataFormats()
495
-    {
480
+    protected function verbListMetadataFormats() {
496 481
         $resArray = [];
497 482
         // check for the optional "identifier" parameter
498 483
         if (isset($this->parameters['identifier'])) {
@@ -524,8 +509,7 @@  discard block
 block discarded – undo
524 509
      *
525 510
      * @return void
526 511
      */
527
-    protected function verbListRecords()
528
-    {
512
+    protected function verbListRecords() {
529 513
         // Check for invalid arguments.
530 514
         if (!empty($this->parameters['resumptionToken'])) {
531 515
             // "resumptionToken" is an exclusive argument.
@@ -580,8 +564,7 @@  discard block
 block discarded – undo
580 564
      *
581 565
      * @return void
582 566
      */
583
-    protected function verbListSets()
584
-    {
567
+    protected function verbListSets() {
585 568
         // It is required to set a oai_name inside the collection record to be shown in oai-pmh plugin.
586 569
         $this->settings['hideEmptyOaiNames'] = true;
587 570
 
@@ -727,8 +710,7 @@  discard block
 block discarded – undo
727 710
      *
728 711
      * @return array|false
729 712
      */
730
-    private function getDate(string $dateType)
731
-    {
713
+    private function getDate(string $dateType) {
732 714
         return strptime($this->parameters[$dateType], '%Y-%m-%dT%H:%M:%SZ') ?: strptime($this->parameters[$dateType], '%Y-%m-%d');
733 715
     }
734 716
 
@@ -783,8 +765,7 @@  discard block
 block discarded – undo
783 765
      *
784 766
      * @return array of enriched records
785 767
      */
786
-    protected function generateOutputForDocumentList(array $documentListSet)
787
-    {
768
+    protected function generateOutputForDocumentList(array $documentListSet) {
788 769
         $documentsToProcess = array_splice($documentListSet['elements'], 0, (int) $this->settings['limit']);
789 770
         if (empty($documentsToProcess)) {
790 771
             $this->error = 'noRecordsMatch';
@@ -837,8 +818,7 @@  discard block
 block discarded – undo
837 818
      *
838 819
      * @return void
839 820
      */
840
-    protected function generateResumptionTokenForDocumentListSet(array $documentListSet, int $numShownDocuments)
841
-    {
821
+    protected function generateResumptionTokenForDocumentListSet(array $documentListSet, int $numShownDocuments) {
842 822
         // The cursor specifies how many elements have already been returned in previous requests
843 823
         // See http://www.openarchives.org/OAI/openarchivesprotocol.html#FlowControl
844 824
         $currentCursor = $documentListSet['metadata']['cursor'];
Please login to merge, or discard this patch.
Upper-Lower-Casing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -241,7 +241,7 @@  discard block
 block discarded – undo
241 241
      */
242 242
     protected function getMetsData(array $record)
243 243
     {
244
-        $mets = null;
244
+        $mets = NULL;
245 245
         // Load METS file.
246 246
         $xml = new \DOMDocument();
247 247
         if ($xml->load($record['location'])) {
@@ -322,7 +322,7 @@  discard block
 block discarded – undo
322 322
         } else {
323 323
             // No resumption token found or resumption token expired.
324 324
             $this->error = 'badResumptionToken';
325
-            return null;
325
+            return NULL;
326 326
         }
327 327
     }
328 328
 
@@ -583,7 +583,7 @@  discard block
 block discarded – undo
583 583
     protected function verbListSets()
584 584
     {
585 585
         // It is required to set a oai_name inside the collection record to be shown in oai-pmh plugin.
586
-        $this->settings['hideEmptyOaiNames'] = true;
586
+        $this->settings['hideEmptyOaiNames'] = TRUE;
587 587
 
588 588
         $oaiSets = $this->collectionRepository->findCollectionsBySettings($this->settings);
589 589
 
@@ -844,7 +844,7 @@  discard block
 block discarded – undo
844 844
         $currentCursor = $documentListSet['metadata']['cursor'];
845 845
 
846 846
         if (count($documentListSet['elements']) !== 0) {
847
-            $resumptionToken = uniqid('', false);
847
+            $resumptionToken = uniqid('', FALSE);
848 848
 
849 849
             $documentListSet['metadata']['cursor'] += $numShownDocuments;
850 850
 
Please login to merge, or discard this patch.