Skip to content

Commit

Permalink
remove shortcut
Browse files Browse the repository at this point in the history
  • Loading branch information
chriskapp committed Apr 14, 2024
1 parent 0b7895b commit 85f27ff
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Service/System/ContextFactory.php
Expand Up @@ -104,10 +104,10 @@ public function newCommandContext(InputInterface $input): UserContext

public function addContextOptions(Command $command): void
{
$command->addOption('tenant', 't', InputOption::VALUE_REQUIRED, 'Optional the tenant for this context');
$command->addOption('category', 'c', InputOption::VALUE_REQUIRED, 'Optional the category id or name for this context');
$command->addOption('user', 'u', InputOption::VALUE_REQUIRED, 'Optional the user id or name for this context');
$command->addOption('app', 'a', InputOption::VALUE_REQUIRED, 'Optional the app id or name for this context');
$command->addOption('tenant', null, InputOption::VALUE_REQUIRED, 'Optional the tenant for this context');
$command->addOption('category', null, InputOption::VALUE_REQUIRED, 'Optional the category id or name for this context');
$command->addOption('user', null, InputOption::VALUE_REQUIRED, 'Optional the user id or name for this context');
$command->addOption('app', null, InputOption::VALUE_REQUIRED, 'Optional the app id or name for this context');
}

public function newUserContext(Table\Generated\UserRow $user): UserContext
Expand Down

0 comments on commit 85f27ff

Please sign in to comment.