| Conditions | 5 |
| Paths | 10 |
| Total Lines | 13 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 35 | public function isVisitTime($timestamp = null) |
||
| 36 | { |
||
| 37 | $timestamp = is_int($timestamp) ? $timestamp : time(); |
||
| 38 | foreach ($this->times as $time) { |
||
| 39 | if ($this->isBetween($timestamp, $time['from'], $time['to'], 'Hi')) { |
||
| 40 | return true; |
||
| 41 | } |
||
| 42 | } |
||
| 43 | if (empty($this->times)) { |
||
| 44 | return true; |
||
| 45 | } |
||
| 46 | return false; |
||
| 47 | } |
||
| 48 | |||
| 59 |