[BUGFIX] Remove superflous comma

This commit is contained in:
Philipp Dieter 2021-11-23 00:34:26 +01:00
parent 0e0e351b0f
commit 4393111f02

View File

@ -102,7 +102,7 @@ trait ValidationTrait
case 'date': case 'date':
$row = \DateTime::createFromFormat( $row = \DateTime::createFromFormat(
'Y-m-d H:i:s', 'Y-m-d H:i:s',
$row . ' 00:00:00', $row . ' 00:00:00'
); );
break; break;
} }