Browse Source

chore: use long namespaced class instead of putting it inline

Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
tags/v29.0.0beta1
Côme Chilliet 4 months ago
parent
commit
f4a267536a
No account linked to committer's email address
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      core/register_command.php

+ 2
- 1
core/register_command.php 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));

Loading…
Cancel
Save