| Total Complexity | 5 |
| Total Lines | 41 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | class RemoveCrapReleases extends Command |
||
| 9 | { |
||
| 10 | protected $signature = 'releases:remove-crap |
||
| 11 | {--type= : Type of crap to remove} |
||
| 12 | {--time=full : Time limit in hours or full} |
||
| 13 | {--blacklist-id= : Specific blacklist ID} |
||
| 14 | {--delete : Actually delete releases}'; |
||
| 15 | |||
| 16 | protected $description = 'Remove crap releases based on various criteria'; |
||
| 17 | |||
| 18 | public function __construct() |
||
| 19 | { |
||
| 20 | parent::__construct(); |
||
| 21 | } |
||
| 22 | |||
| 23 | public function handle(): int |
||
| 49 | } |
||
| 50 | } |
||
| 52 |