Skip to content

Commit fcb4ac0

Browse files
committed
Update the main console article too
1 parent 88e0f1d commit fcb4ac0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

console.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,11 +163,11 @@ Getting Services from the Service Container
163163
To actually create a new user, the command has to access to some
164164
:doc:`services </service_container>`. Since your command is already registered
165165
as a service, you can use normal dependency injection. Imagine you have a
166-
``AppBundle\Service\UserManager`` service that you want to access::
166+
``App\Service\UserManager`` service that you want to access::
167167

168168
// ...
169169
use Symfony\Component\Console\Command\Command;
170-
use AppBundle\Service\UserManager;
170+
use App\Service\UserManager;
171171

172172
class CreateUserCommand extends Command
173173
{

0 commit comments

Comments
 (0)