Skip to content

Commit 56c6c46

Browse files
committed
refactor: extract getDateTimeFormat() method
1 parent c24497d commit 56c6c46

File tree

1 file changed

+17
-12
lines changed

1 file changed

+17
-12
lines changed

system/DataCaster/Cast/DatetimeCast.php

+17-12
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,7 @@ public static function get(
4343
/**
4444
* @see https://www.php.net/manual/en/datetimeimmutable.createfromformat.php#datetimeimmutable.createfromformat.parameters
4545
*/
46-
$format = match ($params[0] ?? '') {
47-
'' => $helper->dateFormat['datetime'],
48-
'ms' => $helper->dateFormat['datetime-ms'],
49-
'us' => $helper->dateFormat['datetime-us'],
50-
default => throw new InvalidArgumentException('Invalid parameter: ' . $params[0]),
51-
};
46+
$format = self::getDateTimeFormat($params, $helper);
5247

5348
return Time::createFromFormat($format, $value);
5449
}
@@ -68,13 +63,23 @@ public static function set(
6863
throw new InvalidArgumentException($message);
6964
}
7065

71-
$format = match ($params[0] ?? '') {
72-
'' => $helper->dateFormat['datetime'],
73-
'ms' => $helper->dateFormat['datetime-ms'],
74-
'us' => $helper->dateFormat['datetime-us'],
75-
default => throw new InvalidArgumentException('Invalid parameter: ' . $params[0]),
76-
};
66+
$format = self::getDateTimeFormat($params, $helper);
7767

7868
return $value->format($format);
7969
}
70+
71+
/**
72+
* Gets DateTime format from the DB connection.
73+
*
74+
* @param list<string> $params Additional param
75+
*/
76+
protected static function getDateTimeFormat(array $params, BaseConnection $db): string
77+
{
78+
return match ($params[0] ?? '') {
79+
'' => $db->dateFormat['datetime'],
80+
'ms' => $db->dateFormat['datetime-ms'],
81+
'us' => $db->dateFormat['datetime-us'],
82+
default => throw new InvalidArgumentException('Invalid parameter: ' . $params[0]),
83+
};
84+
}
8085
}

0 commit comments

Comments
 (0)