| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 31 | public function __construct(Time $start, Time $end) |
||
| 32 | { |
||
| 33 | $this->start = $start; |
||
| 34 | $this->end = $end; |
||
| 35 | |||
| 36 | if ($start->isAfterOrEqual($end)) { |
||
| 37 | throw new \InvalidArgumentException( |
||
| 38 | sprintf('The opening time "%s" must be before the closing time "%s".', $start, $end) |
||
| 39 | ); |
||
| 40 | } |
||
| 41 | } |
||
| 42 | |||
| 91 |