ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
Group.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
24
25class Group
26{
27 public function changeTimezone(string $timezone): Transformation
28 {
29 return new ChangeTimezone($timezone);
30 }
31}
Change the timezone (and only the timezone) of php's \DateTimeImmutable WITHOUT changing the date-val...
changeTimezone(string $timezone)
Definition: Group.php:27
A transformation is a function from one datatype to another.