quotaService = $quotaService; } protected function configure() { $this->setName('globalquota:status') ->setDescription('Show global quota and usage'); } protected function execute(InputInterface $input, OutputInterface $output) { $status = $this->quotaService->getStatus(); $output->writeln("Quota: {$status['quota_bytes']} bytes"); $output->writeln("Used: {$status['used_bytes']} bytes"); $output->writeln("Free: {$status['free_bytes']} bytes"); $output->writeln("Usage: {$status['usage_percentage']}%"); return 0; } }