Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
42 | protected function getAllFragmentSizes(DateFragmentedRepresentationInterface $input) |
||
43 | { |
||
44 | $days = $this->calculator->getYearLength($input->getYear()); |
||
|
|||
45 | $monthes = array_fill( |
||
46 | 0, |
||
47 | intval($days / $this->length), |
||
48 | $this->length |
||
49 | ); |
||
50 | $monthes[] = $days % $this->length; |
||
51 | |||
52 | return [$monthes]; |
||
53 | } |
||
55 |