*/ class CronCommand extends ChainedCommand { /** * A quick description of this command. * @return string. */ public function brief(): string { return 'Runs all data update commands chained.'; } public $commands = [ PremiumPurgeCommand::class, PurgeInactiveUsersCommand::class, RebuildForumCacheCommand::class, SessionPurgeCommand::class, StatusCheckCommand::class, ]; }