chore: use long namespaced class instead of putting it inline

Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
This commit is contained in:
Côme Chilliet 2024-01-30 11:49:25 +01:00
parent c1d67cc614
commit f4a267536a
No known key found for this signature in database
GPG key ID: A3E2F658B28C760A

View file

@ -55,8 +55,9 @@ use OC\Core\Command;
use OCP\IConfig;
use OCP\Server;
use Psr\Log\LoggerInterface;
use Stecman\Component\Symfony\Console\BashCompletion\CompletionCommand;
$application->add(new \Stecman\Component\Symfony\Console\BashCompletion\CompletionCommand());
$application->add(new CompletionCommand());
$application->add(Server::get(Command\Status::class));
$application->add(Server::get(Command\Check::class));
$application->add(Server::get(Command\L10n\CreateJs::class));