Hey!
What do you think about adding something like this to LocalDate
public static function utc(Clock $clock = null): LocalDate // or nowUtc
{
return LocalDate::now(TimeZone::utc(), $clock);
}
and the same idea to LocalDateTime?
I'm doing this in my code LocalDate::now(TimeZone::utc()) and I'm wondering if a simpler syntax makes sense to other users.
Hey!
What do you think about adding something like this to
LocalDateand the same idea to LocalDateTime?
I'm doing this in my code
LocalDate::now(TimeZone::utc())and I'm wondering if a simpler syntax makes sense to other users.