@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | ->where( |
37 | 37 | $q->expr()->andX( |
38 | 38 | $q->expr()->eq('tablenames', $q->quote('tx_cal_event')), |
39 | - $q->expr()->eq('uid_foreign', $q->createNamedParameter((int) $event['uid'], \PDO::PARAM_INT)) |
|
39 | + $q->expr()->eq('uid_foreign', $q->createNamedParameter((int)$event['uid'], \PDO::PARAM_INT)) |
|
40 | 40 | ) |
41 | 41 | ); |
42 | 42 | |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | $importId = CalMigrationUpdate::IMPORT_PREFIX . $selectResult['uid']; |
50 | 50 | |
51 | 51 | $fieldValues = [ |
52 | - 'uid_foreign' => (int) $recordId, |
|
52 | + 'uid_foreign' => (int)$recordId, |
|
53 | 53 | 'tablenames' => $table, |
54 | 54 | ]; |
55 | 55 |