Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
9 | 2 | protected function generate() |
|
10 | { |
||
11 | 2 | $this->description = 'Hoveniersmaandag'; |
|
12 | |||
13 | 2 | $timestamp = strtotime('third monday', mktime(0, 0, 0, 7, 0, $this->year)); |
|
14 | 2 | $date = new \DateTime(); |
|
15 | 2 | $date->setTimestamp($timestamp); |
|
16 | |||
17 | 2 | $this->setupDateTimeObjects($date); |
|
18 | 2 | } |
|
19 | } |
||
20 |