Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
15 | 3 | public function handle() |
|
16 | { |
||
17 | 3 | \TemporalKey\TemporalKey::$storeModel::query() |
|
18 | 3 | ->where('valid_until', '<=', Carbon::now()) |
|
19 | 3 | ->orWhere(function (Builder $q) { |
|
20 | 3 | $q->where('usage_max', '>', 0) |
|
21 | 3 | ->whereRaw('`usage_max` <= `usage_counter`'); |
|
22 | 3 | }) |
|
23 | 3 | ->delete(); |
|
24 | } |
||
26 |