Conditions | 3 |
Paths | 4 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
12 | public function clearAllLogs() { |
||
13 | $enabled = false; |
||
14 | $config = config('laravel-job-handler.clear-log-after-seconds', null); |
||
15 | |||
16 | if(!is_null($config)) { |
||
17 | $enabled = true; |
||
18 | } |
||
19 | |||
20 | if($enabled) { |
||
21 | $this->clearAllLogsBefore(Carbon::now()->subSeconds($config)); |
||
22 | } else { |
||
23 | //deleting of old logs is disabled |
||
37 |