Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
19 | public function run() |
||
20 | { |
||
21 | $this->createDay('Dilluns', 1, true); |
||
22 | $this->createDay('Dimarts', 2, true); |
||
23 | $this->createDay('Dimecres', 3, true); |
||
24 | $this->createDay('Dijous', 4, true); |
||
25 | $this->createDay('Divendres', 5, true); |
||
26 | $this->createDay('Dissabte', 6, false); |
||
27 | $this->createDay('Diumenge', 7, false); |
||
28 | } |
||
29 | |||
44 |