Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
32 | protected function clearAllLogsBefore(Carbon $carbon) |
||
33 | { |
||
34 | $date_string = $carbon->copy()->format('Y-m-d H:i:s'); |
||
35 | |||
36 | CrawlerStatus::where('created_at', '<=', $date_string) |
||
37 | ->orWhereNull('created_at') |
||
38 | ->delete(); |
||
39 | CrawlerStatusLogs::where('created_at', '<=', $date_string) |
||
40 | ->orWhereNull('created_at') |
||
41 | ->delete(); |
||
42 | } |
||
44 |