Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
16 | public function handle($args = []) |
||
17 | { |
||
18 | $operator = $this->argGet($args, 'operator', '>='); |
||
19 | $datetime = $this->argGet($args, 'datetime', time()); |
||
20 | |||
21 | if ( ! ($datetime instanceof DateTime)) { |
||
22 | $datetime = new DateTime($datetime); |
||
23 | } |
||
24 | |||
25 | return $this->compare($datetime, new DateTime(), $operator); |
||
26 | } |
||
27 | |||
60 |