Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
45 | 11 | public function __construct() |
|
46 | { |
||
47 | 11 | $this->years = new Years(); |
|
48 | 11 | $this->months = new Months(); |
|
49 | 11 | $this->days = new Days(); |
|
50 | 11 | $this->hours = new Hours(); |
|
51 | 11 | $this->minutes = new Minutes(); |
|
52 | 11 | $this->seconds = new Seconds(); |
|
53 | 11 | $this->milliseconds = new Milliseconds(); |
|
54 | } |
||
91 |