We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
symfony 4.4.8 php 7.3
When I run the command - php bin/console OAuth2:CreateScope scope read
it gives the following error - There are no commands defined in the "OAuth2" namespace.
The text was updated successfully, but these errors were encountered:
You have to register all commands as service:
services:
OAuth2\ServerBundle\Command\CreateClientCommand: tags: - { name: 'console.command', command: 'OAuth2:CreateClient' } OAuth2\ServerBundle\Command\CreateScopeCommand: tags: - { name: 'console.command', command: 'OAuth2:CreateScope' } OAuth2\ServerBundle\Command\CreateUserCommand: tags: - { name: 'console.command', command: 'OAuth2:CreateUser' }
Sorry, something went wrong.
No branches or pull requests
symfony 4.4.8
php 7.3
When I run the command -
php bin/console OAuth2:CreateScope scope read
it gives the following error -
There are no commands defined in the "OAuth2" namespace.
The text was updated successfully, but these errors were encountered: