ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
Group.php
Go to the documentation of this file.
1<?php
2
3declare(strict_types=1);
4
5/* Copyright (c) 1998-2019 ILIAS open source, Extended GPL, see docs/LICENSE */
6
8
10
14class Group
15{
16 public function changeTimezone(string $timezone) : Transformation
17 {
18 return new ChangeTimezone($timezone);
19 }
20}
An exception for terminatinating execution or to throw for unit testing.
Change the timezone (and only the timezone) of php's \DateTimeImmutable WITHOUT changing the date-val...
changeTimezone(string $timezone)
Definition: Group.php:16
A transformation is a function from one datatype to another.