Total Complexity | 2 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
13 | final class WeekInYear implements TemporalExpressionInterface |
||
14 | { |
||
15 | /** |
||
16 | * @var Week |
||
17 | */ |
||
18 | protected $week; |
||
19 | |||
20 | /** |
||
21 | * @param int $week |
||
22 | */ |
||
23 | 4 | public function __construct(int $week) |
|
24 | { |
||
25 | 4 | $this->week = new Week($week); |
|
26 | 2 | } |
|
27 | |||
28 | /** |
||
29 | * {@inheritdoc} |
||
30 | */ |
||
31 | 2 | public function includes(DateTimeInterface $date): bool |
|
34 | } |
||
35 | } |
||
36 |