mirror of
https://github.com/dg/dibi.git
synced 2025-08-26 07:24:25 +02:00
coding style: TRUE/FALSE/NULL -> true/false/null
This commit is contained in:
@@ -15,5 +15,5 @@ $translator = new Dibi\Translator($conn);
|
||||
|
||||
$datetime = new DateTime('1978-01-23 00:00:00');
|
||||
|
||||
Assert::equal($datetime->format('U'), $translator->formatValue(new DateTime($datetime->format('c')), NULL));
|
||||
Assert::equal($datetime->format('U'), $translator->formatValue(new DateTimeImmutable($datetime->format('c')), NULL));
|
||||
Assert::equal($datetime->format('U'), $translator->formatValue(new DateTime($datetime->format('c')), null));
|
||||
Assert::equal($datetime->format('U'), $translator->formatValue(new DateTimeImmutable($datetime->format('c')), null));
|
||||
|
Reference in New Issue
Block a user