Conditions | 3 |
Paths | 3 |
Total Lines | 18 |
Code Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Tests | 9 |
CRAP Score | 3.054 |
Changes | 0 |
1 | <?php |
||
9 | 12 | protected function generate() |
|
10 | { |
||
11 | 12 | $this->description = 'Programmeursdag'; |
|
12 | |||
13 | 12 | if ($this->year >= 2002) { |
|
14 | 3 | if ($this->year % 4 === 0) { |
|
15 | $this->startDate = new \DateTime($this->year . '-09-12'); |
||
16 | $this->endDate = new \DateTime($this->year . '-09-12'); |
||
17 | } else { |
||
18 | 3 | $this->startDate = new \DateTime($this->year . '-09-13'); |
|
19 | 3 | $this->endDate = new \DateTime($this->year . '-09-13'); |
|
20 | } |
||
21 | |||
22 | 3 | $this->totalLength = 1; |
|
23 | } else { |
||
24 | 9 | $this->valid = false; |
|
25 | } |
||
26 | 12 | } |
|
27 | } |
||
28 |