| Conditions | 2 |
| Paths | 2 |
| Total Lines | 5 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 21 | public function operatorBw() |
||
| 22 | { |
||
| 23 | [$startDate, $endDate] = explode(',', $this->value); |
||
| 24 | $dateValue = date('Y-m-d H:i:s', strtotime($this->getValue())); |
||
| 25 | return ($dateValue >= date('Y-m-d H:i:s', strtotime($startDate))) && ($dateValue <= date('Y-m-d H:i:s', strtotime($endDate))); |
||
|
|
|||
| 26 | } |
||
| 48 |