| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 29 | 3 | public function handle() |
|
| 30 | { |
||
| 31 | 3 | if (config('geld.incinerate')) { |
|
| 32 | 3 | $incinerate = '@'.strtotime('-'.config('geld.incinerate_after')); |
|
| 33 | 3 | $edge = new DateTime($incinerate); |
|
| 34 | 3 | CurrencyHistory::where('created_at', '<', $edge) |
|
| 35 | 3 | ->forceDelete(); |
|
| 36 | 3 | Log::info("Data incinerated successfully"); |
|
| 37 | } |
||
| 40 |