1
0
mirror of synced 2025-02-09 08:49:26 +03:00

#1497 - minor CS fixes

This commit is contained in:
Marco Pivetta 2015-12-11 18:53:18 +01:00
parent df129635cf
commit 8c086d1a6e

View File

@ -89,7 +89,7 @@ the UTC time at the time of the booking and the timezone the event happened in.
class UTCDateTimeType extends DateTimeType
{
static private $utc = null;
static private $utc;
public function convertToDatabaseValue($value, AbstractPlatform $platform)
{
@ -122,7 +122,6 @@ the UTC time at the time of the booking and the timezone the event happened in.
return $converted;
}
}
This database type makes sure that every DateTime instance is always saved in UTC, relative