fix: added set/get/delete/clear to register command

Signed-off-by: yemkareems <yemkareems@gmail.com>
pull/54641/head
yemkareems 2025-08-26 09:48:07 +07:00
parent 32e201e540
commit 43e38a120f
No known key found for this signature in database
GPG Key ID: 4293DA00B9478934
1 changed files with 4 additions and 0 deletions

@ -158,6 +158,10 @@ if ($config->getSystemValueBool('installed', false)) {
$application->add(Server::get(Command\TaskProcessing\Statistics::class));
$application->add(Server::get(Command\Memcache\RedisCommand::class));
$application->add(Server::get(Command\Memcache\DistributedClear::class));
$application->add(Server::get(Command\Memcache\DistributedDelete::class));
$application->add(Server::get(Command\Memcache\DistributedGet::class));
$application->add(Server::get(Command\Memcache\DistributedSet::class));
} else {
$application->add(Server::get(Command\Maintenance\Install::class));
}