1 | <?php |
||
12 | class Util |
||
13 | { |
||
14 | /** |
||
15 | * Bugfix for get monday of this week. |
||
16 | * |
||
17 | * @see https://bugs.php.net/bug.php?id=63740 |
||
18 | * |
||
19 | * @param \DateTime $date |
||
20 | * |
||
21 | * @return \DateTime |
||
22 | */ |
||
23 | 35 | public static function getMondayThisWeek(\DateTime $date) |
|
37 | |||
38 | /** |
||
39 | * @param \DateTime $date |
||
40 | * @param int $seconds |
||
41 | * |
||
42 | * @return \DateTime |
||
43 | */ |
||
44 | 10 | public static function roundDate(\DateTime $date, $seconds) |
|
50 | } |
||
51 |