You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 5, 2022. It is now read-only.
With the move in Symfony to defaulting all services to private, unless explicitly set public, using code like $this->getContainer()->get('dz.slack.users'); to get the services within the code is also somewhat obsolete.
By registering commands as services (see #28) it is also now better to inject any services into the constructor wherever possible rather than extending ContainerAwareCommand (extend Symfony\Component\Console\Command\Command).
The text was updated successfully, but these errors were encountered:
With the move in Symfony to defaulting all services to private, unless explicitly set public, using code like
$this->getContainer()->get('dz.slack.users');
to get the services within the code is also somewhat obsolete.By registering commands as services (see #28) it is also now better to inject any services into the constructor wherever possible rather than extending ContainerAwareCommand (
extend Symfony\Component\Console\Command\Command
).The text was updated successfully, but these errors were encountered: