Conditions | 2 |
Paths | 1 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php defined('SYSPATH') OR die('No direct script access.'); |
||
11 | 1 | public function not_expired($current_time = NULL) |
|
12 | { |
||
13 | return $this |
||
14 | 1 | ->where_open() |
|
15 | 1 | ->where('expires_at', '=', NULL) |
|
16 | 1 | ->or_where('expires_at', '>=', date('Y-m-d H:i:s', $current_time ?: time())) |
|
17 | 1 | ->where_close(); |
|
18 | } |
||
19 | } |
||
20 |