Total Complexity | 3 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class DataIncineratorCommand extends Command |
||
13 | { |
||
14 | protected $signature = 'geld:incinerate'; |
||
15 | |||
16 | protected $description = 'Removes records older than the specified incineration threshold'; |
||
17 | |||
18 | /** |
||
19 | * DataIncineratorCommand constructor. |
||
20 | */ |
||
21 | 15 | public function __construct() |
|
24 | 15 | } |
|
25 | |||
26 | /** |
||
27 | * @throws Exception |
||
28 | */ |
||
29 | 3 | public function handle() |
|
40 |