Completed
Push — master ( 19c1cc...9a2a74 )
by Tim
22s
created
Classes/Domain/Repository/IndexRepository.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -214,8 +214,8 @@
 block discarded – undo
214 214
                 } elseif (\is_string($key) && \is_int($indexId)) {
215 215
                     // Table based single return value
216 216
                     $tabledIndexIds[] = [
217
-                         'table' => $key,
218
-                         'indexIds' => [$indexId],
217
+                            'table' => $key,
218
+                            'indexIds' => [$indexId],
219 219
                     ];
220 220
                 }
221 221
             }
Please login to merge, or discard this patch.
Spacing   +18 added lines, -21 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
         OptionRequest $options,
79 79
         array $allowedPages = [],
80 80
         bool $ignoreEnableFields = true
81
-    ): array|QueryResultInterface {
81
+    ): array | QueryResultInterface {
82 82
         $query = $this->createQuery();
83 83
         $querySettings = $query->getQuerySettings();
84 84
         $querySettings->setIgnoreEnableFields($ignoreEnableFields);
@@ -138,12 +138,12 @@  discard block
 block discarded – undo
138 138
      */
139 139
     public function findList(
140 140
         int $limit = 0,
141
-        int|string $listStartTime = 0,
141
+        int | string $listStartTime = 0,
142 142
         int $startOffsetHours = 0,
143 143
         int $overrideStartDate = 0,
144 144
         int $overrideEndDate = 0,
145 145
         bool $ignoreStoragePid = false
146
-    ): array|QueryResultInterface {
146
+    ): array | QueryResultInterface {
147 147
         $startTime = DateTimeUtility::getNow();
148 148
         $endTime = null;
149 149
 
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
         \DateTimeInterface $endDate = null,
185 185
         array $customSearch = [],
186 186
         int $limit = 0
187
-    ): array|QueryResultInterface {
187
+    ): array | QueryResultInterface {
188 188
         $event = new IndexRepositoryFindBySearchEvent($startDate, $endDate, $customSearch, $this->indexTypes, false);
189 189
         $this->eventDispatcher->dispatch($event);
190 190
 
@@ -269,7 +269,7 @@  discard block
 block discarded – undo
269 269
     /**
270 270
      * Find Past Events.
271 271
      */
272
-    public function findByPast(int $limit, string $sort, string $listStartTime = '0'): array|QueryResultInterface
272
+    public function findByPast(int $limit, string $sort, string $listStartTime = '0'): array | QueryResultInterface
273 273
     {
274 274
         $now = DateTimeUtility::getNow();
275 275
         if ('now' !== $listStartTime) {
@@ -295,7 +295,7 @@  discard block
 block discarded – undo
295 295
     /**
296 296
      * Find by Index UIDs.
297 297
      */
298
-    public function findByUids(array $uids): array|QueryResultInterface
298
+    public function findByUids(array $uids): array | QueryResultInterface
299 299
     {
300 300
         $query = $this->createQuery();
301 301
         $query->setOrderings($this->getSorting(QueryInterface::ORDER_ASCENDING));
@@ -316,7 +316,7 @@  discard block
 block discarded – undo
316 316
         int $limit = 100,
317 317
         string $sort = QueryInterface::ORDER_ASCENDING,
318 318
         bool $useIndexTime = false
319
-    ): array|QueryResultInterface {
319
+    ): array | QueryResultInterface {
320 320
         if (!$future && !$past) {
321 321
             return [];
322 322
         }
@@ -340,8 +340,7 @@  discard block
 block discarded – undo
340 340
 
341 341
         $query->setLimit($limit);
342 342
         $sort = QueryInterface::ORDER_ASCENDING === $sort ?
343
-            QueryInterface::ORDER_ASCENDING :
344
-            QueryInterface::ORDER_DESCENDING;
343
+            QueryInterface::ORDER_ASCENDING : QueryInterface::ORDER_DESCENDING;
345 344
         $query->setOrderings($this->getSorting($sort));
346 345
 
347 346
         return $this->matchAndExecute($query, $constraints);
@@ -356,7 +355,7 @@  discard block
 block discarded – undo
356 355
         bool $past = false,
357 356
         int $limit = 100,
358 357
         string $sort = QueryInterface::ORDER_ASCENDING
359
-    ): array|QueryResultInterface {
358
+    ): array | QueryResultInterface {
360 359
         if (!$future && !$past) {
361 360
             return [];
362 361
         }
@@ -384,8 +383,7 @@  discard block
 block discarded – undo
384 383
 
385 384
         $query->setLimit($limit);
386 385
         $sort = QueryInterface::ORDER_ASCENDING === $sort ?
387
-            QueryInterface::ORDER_ASCENDING :
388
-            QueryInterface::ORDER_DESCENDING;
386
+            QueryInterface::ORDER_ASCENDING : QueryInterface::ORDER_DESCENDING;
389 387
         $query->setOrderings($this->getSorting($sort));
390 388
 
391 389
         return $this->matchAndExecute($query, $constraints);
@@ -394,7 +392,7 @@  discard block
 block discarded – undo
394 392
     /**
395 393
      * find Year.
396 394
      */
397
-    public function findYear(int $year): array|QueryResultInterface
395
+    public function findYear(int $year): array | QueryResultInterface
398 396
     {
399 397
         $startTime = (new \DateTimeImmutable('midnight'))->setDate($year, 1, 1);
400 398
         $endTime = $startTime->modify('+1 year -1 second');
@@ -405,7 +403,7 @@  discard block
 block discarded – undo
405 403
     /**
406 404
      * find quarter.
407 405
      */
408
-    public function findQuarter(int $year, int $quarter): array|QueryResultInterface
406
+    public function findQuarter(int $year, int $quarter): array | QueryResultInterface
409 407
     {
410 408
         $startMonth = 1 + (3 * ($quarter - 1));
411 409
         $startTime = (new \DateTimeImmutable('midnight'))->setDate($year, $startMonth, 1);
@@ -417,7 +415,7 @@  discard block
 block discarded – undo
417 415
     /**
418 416
      * find Month.
419 417
      */
420
-    public function findMonth(int $year, int $month): array|QueryResultInterface
418
+    public function findMonth(int $year, int $month): array | QueryResultInterface
421 419
     {
422 420
         $startTime = (new \DateTimeImmutable('midnight'))->setDate($year, $month, 1);
423 421
         $endTime = $startTime->modify('+1 month -1 second');
@@ -428,7 +426,7 @@  discard block
 block discarded – undo
428 426
     /**
429 427
      * find Week.
430 428
      */
431
-    public function findWeek(int $year, int $week, int $weekStart = 1): array|QueryResultInterface
429
+    public function findWeek(int $year, int $week, int $weekStart = 1): array | QueryResultInterface
432 430
     {
433 431
         $startTime = \DateTimeImmutable::createFromMutable(
434 432
             DateTimeUtility::convertWeekYear2DayMonthYear($week, $year, $weekStart)
@@ -441,7 +439,7 @@  discard block
 block discarded – undo
441 439
     /**
442 440
      * find day.
443 441
      */
444
-    public function findDay(int $year, int $month, int $day): array|QueryResultInterface
442
+    public function findDay(int $year, int $month, int $day): array | QueryResultInterface
445 443
     {
446 444
         $startTime = (new \DateTimeImmutable('midnight'))->setDate($year, $month, $day);
447 445
         $endTime = $startTime->modify('+1 day -1 second');
@@ -479,7 +477,7 @@  discard block
 block discarded – undo
479 477
     public function findByTimeSlot(
480 478
         ?\DateTimeInterface $startTime,
481 479
         \DateTimeInterface $endTime = null
482
-    ): array|QueryResultInterface {
480
+    ): array | QueryResultInterface {
483 481
         $query = $this->createQuery();
484 482
         $constraints = $this->getDefaultConstraints($query);
485 483
         $this->addTimeFrameConstraints($constraints, $query, $startTime, $endTime);
@@ -493,7 +491,7 @@  discard block
 block discarded – undo
493 491
     /**
494 492
      * Find all indices by the given Event model.
495 493
      */
496
-    public function findByEvent(DomainObjectInterface $event): array|QueryResultInterface
494
+    public function findByEvent(DomainObjectInterface $event): array | QueryResultInterface
497 495
     {
498 496
         $query = $this->createQuery();
499 497
 
@@ -522,8 +520,7 @@  discard block
 block discarded – undo
522 520
             ->getConfiguration(ConfigurationManagerInterface::CONFIGURATION_TYPE_FRAMEWORK);
523 521
 
524 522
         return isset($frameworkConfig['persistence']['storagePid']) ?
525
-            GeneralUtility::intExplode(',', $frameworkConfig['persistence']['storagePid']) :
526
-            [];
523
+            GeneralUtility::intExplode(',', $frameworkConfig['persistence']['storagePid']) : [];
527 524
     }
528 525
 
529 526
     /**
Please login to merge, or discard this patch.
Classes/Widgets/DataProvider/NextEventsDataProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
         $query->setLimit(15);
33 33
         $indices = $query->execute()->toArray();
34 34
 
35
-        return array_map(function (Index $index) {
35
+        return array_map(function(Index $index) {
36 36
             try {
37 37
                 /** @var StandaloneView $standaloneView */
38 38
                 $standaloneView = GeneralUtility::makeInstance(StandaloneView::class);
Please login to merge, or discard this patch.
Classes/Service/Ical/DissectICalService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
         }
24 24
         $events = $parser->getEvents();
25 25
 
26
-        $wrapEvents = static function (ICalEvent $event) {
26
+        $wrapEvents = static function(ICalEvent $event) {
27 27
             return new DissectEventAdapter($event);
28 28
         };
29 29
 
Please login to merge, or discard this patch.
Classes/Service/IndexPreparationService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@
 block discarded – undo
84 84
     {
85 85
         $workspace = isset($record['t3ver_wsid']) ? (int)$record['t3ver_wsid'] : 0;
86 86
         $origId = isset($record['t3ver_oid']) ? (int)$record['t3ver_oid'] : 0;
87
-        $neededItems = array_map(static function ($item) use ($workspace, $origId, $record) {
87
+        $neededItems = array_map(static function($item) use ($workspace, $origId, $record) {
88 88
             $item['t3ver_wsid'] = $workspace;
89 89
             // Set relation to the original record
90 90
             if ($workspace) {
Please login to merge, or discard this patch.
Classes/ViewHelpers/DateTime/FormatUtcDateViewHelper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
 
34 34
         $date = $arguments['date'];
35 35
         if ($date instanceof \DateTimeInterface) {
36
-            $renderChildrenClosure = static function () use ($date) {
36
+            $renderChildrenClosure = static function() use ($date) {
37 37
                 // Convert date to timestamp, so that it can be reparsed.
38 38
                 return $date->getTimestamp();
39 39
             };
Please login to merge, or discard this patch.
Classes/Service/IndexerService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -206,7 +206,7 @@
 block discarded – undo
206 206
 
207 207
         if ($workspace) {
208 208
             // Placeholder are respect in function updateIndex
209
-            $currentItems = array_filter($currentItems, static function ($item) {
209
+            $currentItems = array_filter($currentItems, static function($item) {
210 210
                 return VersionState::DELETE_PLACEHOLDER !== ($item['t3ver_state'] ?? false);
211 211
             });
212 212
         }
Please login to merge, or discard this patch.
Classes/Service/SecondaryTimeTableService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
 
18 18
     public function getSecondaryTimeTables(): array
19 19
     {
20
-        return array_filter($this->timeTableServices, function (TimeTableInterface $timeTable) {
20
+        return array_filter($this->timeTableServices, function(TimeTableInterface $timeTable) {
21 21
             return $timeTable->enable();
22 22
         });
23 23
     }
Please login to merge, or discard this patch.
Classes/Hooks/ProcessCmdmapClass.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -22,12 +22,12 @@
 block discarded – undo
22 22
      * Handle CMD.
23 23
      */
24 24
     public function processCmdmap_postProcess(
25
-        int|string $command,
25
+        int | string $command,
26 26
         string $table,
27
-        int|string $uid,
27
+        int | string $uid,
28 28
         mixed $value,
29 29
         DataHandler $handler,
30
-        false|array $pasteUpdate,
30
+        false | array $pasteUpdate,
31 31
         array $pasteDatamap
32 32
     ): void {
33 33
         /** @var IndexerService $indexer */
Please login to merge, or discard this patch.
Classes/Hooks/ProcessDatamapClass.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
     public function processDatamap_afterDatabaseOperations(
26 26
         string $status,
27 27
         string $table,
28
-        int|string $identifier,
28
+        int | string $identifier,
29 29
         array $fieldArray,
30 30
         DataHandler $dataHandler
31 31
     ): void {
Please login to merge, or discard this patch.