mirror of
https://github.com/dwaxweiler/connector-mobilizon
synced 2025-06-05 21:59:25 +02:00
fix offset
This commit is contained in:
@ -4,8 +4,8 @@ namespace MobilizonConnector;
|
||||
final class LocalDateTime {
|
||||
private $dateTime;
|
||||
|
||||
public function __construct(string $text, \DateTimeZone $timeZone) {
|
||||
$date = new \DateTimeImmutable($text);
|
||||
public function __construct(string $dateTimeString, \DateTimeZone $timeZone) {
|
||||
$date = new \DateTimeImmutable($dateTimeString);
|
||||
$this->dateTime = $date->setTimezone($timeZone);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user