Completed
Push — master ( c077bb...f1d6f8 )
by Tim
02:09
created
Classes/Updates/CalMigrationUpdate.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -411,7 +411,7 @@  discard block
 block discarded – undo
411 411
                 $customMessages
412 412
             );
413 413
 
414
-            if($eventUid !== 0 && $categoryUid !== 0) {
414
+            if ($eventUid !== 0 && $categoryUid !== 0) {
415 415
                 $insertValues = [
416 416
                     'uid_local' => $categoryUid,
417 417
                     'uid_foreign' => $eventUid,
@@ -817,7 +817,7 @@  discard block
 block discarded – undo
817 817
                     $q->expr()->eq('uid', $q->createNamedParameter((int)$sysCategory['uid'], \PDO::PARAM_INT))
818 818
                 )->set(
819 819
                     'parent',
820
-                    $this->getSysCategoryParentUid(self::IMPORT_PREFIX . (int) $sysCategory['parent'])
820
+                    $this->getSysCategoryParentUid(self::IMPORT_PREFIX . (int)$sysCategory['parent'])
821 821
                 );
822 822
 
823 823
             $dbQueries[] = $q->getSQL();
Please login to merge, or discard this patch.
Classes/Slots/CalMigration.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
                 ->where(
59 59
                     $q->expr()->eq('import_id', $q->createNamedParameter($importId))
60 60
                 )
61
-                ->set('uid_foreign', (int) $recordId)
61
+                ->set('uid_foreign', (int)$recordId)
62 62
                 ->set('tablenames', $table);
63 63
 
64 64
             $dbQueries[] = $q->getSQL();
Please login to merge, or discard this patch.