Improve CustomerCountsCommand with description and output formatting

This commit is contained in:
2025-12-14 17:07:06 +03:00
parent 152e6d715b
commit b4ff6c9ce1
3 changed files with 46 additions and 0 deletions

View File

@@ -2,6 +2,7 @@
<?php
use Console\ApplicationFactory;
use Console\Commands\CustomerCountsCommand;
use Console\Commands\PulseSendEventsCommand;
use Console\Commands\ScheduleListCommand;
use Console\Commands\ScheduleRunCommand;
@@ -98,4 +99,5 @@ $console->add($app->get(ScheduleListCommand::class));
$console->add($app->get(PulseSendEventsCommand::class));
$console->add($app->get(ImagesWarmupCacheCommand::class));
$console->add($app->get(ImagesCacheClearCommand::class));
$console->add($app->get(CustomerCountsCommand::class));
$console->run();