Skip to content

Commit 4d029df

Browse files
committed
lint.
1 parent d2121f6 commit 4d029df

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Migration/Sources/CSV.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -234,8 +234,8 @@ private function exportDocuments(int $batchSize): void
234234

235235
if ($parsedValue !== '') {
236236
$parsedData[$key] = match ($type) {
237-
Attribute::TYPE_INTEGER => is_numeric($parsedValue) ? (int)$parsedValue : null,
238-
Attribute::TYPE_FLOAT => is_numeric($parsedValue) ? (float)$parsedValue : null,
237+
Attribute::TYPE_INTEGER => is_numeric($parsedValue) ? (int) $parsedValue : null,
238+
Attribute::TYPE_FLOAT => is_numeric($parsedValue) ? (float) $parsedValue : null,
239239
Attribute::TYPE_BOOLEAN => filter_var($parsedValue, FILTER_VALIDATE_BOOLEAN),
240240
default => $parsedValue,
241241
};

0 commit comments

Comments
 (0)