not nullable date and time fields cannot be set on exactly 1970-01-01 00:00:00 via (int)0 as that loosely evaluates to false in Propel\Runtime\Util\PropelDateTime #2010
public static function newInstance($value, ?DateTimeZone $timeZone = null, string $dateTimeClass = 'DateTime')
{
if ($value instanceof DateTimeInterface) {
return $value;
}
**if (!$value) {**
// '' is seen as NULL for temporal objects
// because DateTime('') == DateTime('now') -- which is unexpected
return null;
}
The offending code:
It should be rather
PR incoming when I figure out running the tests locally ;)