Conditions | 3 |
Paths | 3 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
45 | 44 | public function isOpenAt(\DateTime $dateTime) : bool |
|
46 | { |
||
47 | 44 | if ($this->isOverridden($dateTime, OverrideInterface::TYPE_EXCLUDE)) { |
|
48 | 24 | return false; |
|
49 | 22 | } elseif ($this->isOverridden($dateTime, OverrideInterface::TYPE_INCLUDE)) { |
|
50 | 2 | return true; |
|
51 | } |
||
52 | |||
53 | 20 | return $this->isDateTimeWithinDayTimePeriods($dateTime); |
|
54 | } |
||
55 | |||
66 |