argument('limit'); if ($limit !== null && ! is_numeric($limit)) { $this->error('Limit must be a number'); return Command::FAILURE; } $this->info('Checking releases against PreDB...'); try { Predb::checkPre($limit ? (int) $limit : false); $this->info('✅ PreDB check complete'); return Command::SUCCESS; } catch (\Exception $e) { $this->error('PreDB check failed: '.$e->getMessage()); return Command::FAILURE; } } }