Completed
Pull Request — master (#713)
by Tim
20s
created
Classes/Updates/CalMigrationUpdate.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -290,7 +290,7 @@  discard block
 block discarded – undo
290 290
 
291 291
             $dispatcher = self::getSignalSlotDispatcher();
292 292
             $dispatcher->dispatch(__CLASS__, __FUNCTION__ . 'PostInsert', $variablesPostInsert);
293
-            $this->logger->debug("after performCalEventUpdatePostInsert: " . $variablesPostInsert['event']['uid'] . " dbQueries: " . print_r($variablesPostInsert['dbQueries'],true));
293
+            $this->logger->debug("after performCalEventUpdatePostInsert: " . $variablesPostInsert['event']['uid'] . " dbQueries: " . print_r($variablesPostInsert['dbQueries'], true));
294 294
         }
295 295
 
296 296
         $indexer = GeneralUtility::makeInstance(IndexerService::class);
@@ -431,7 +431,7 @@  discard block
 block discarded – undo
431 431
     public function performSysFileReferenceUpdate($calIds, array &$dbQueries, &$customMessages)
432 432
     {
433 433
         $this->logger->debug('Start performSysFileReferenceUpdate');
434
-        $this->output->writeln( 'Start performSysFileReferenceUpdate' );
434
+        $this->output->writeln('Start performSysFileReferenceUpdate');
435 435
         $q = $this->getQueryBuilder('tx_cal_event');
436 436
 
437 437
         $variables = [
@@ -974,7 +974,7 @@  discard block
 block discarded – undo
974 974
             '-3' => ConfigurationInterface::RECURRENCE_THIRD_LAST,
975 975
         ];
976 976
         $recurrence = substr($calByday, 0, -2); // cut last 2 chars
977
-        if (empty($calByday) || !array_key_exists($recurrence,$recurrences)) {
977
+        if (empty($calByday) || !array_key_exists($recurrence, $recurrences)) {
978 978
             return '';
979 979
         }
980 980
 
@@ -1308,7 +1308,7 @@  discard block
 block discarded – undo
1308 1308
         $connection = $connectionPool->getConnectionByName(ConnectionPool::DEFAULT_CONNECTION_NAME);
1309 1309
         $dbSchema = $connection->getSchemaManager()->createSchema();
1310 1310
 
1311
-        $tableNames = array_map(static function ($table) {
1311
+        $tableNames = array_map(static function($table) {
1312 1312
             return $table->getName();
1313 1313
         }, $dbSchema->getTables());
1314 1314
 
Please login to merge, or discard this patch.