Skip to content
Prev Previous commit
Fixed some copy+paste errors
  • Loading branch information
javiereguiluz committed May 21, 2016
commit ecfd34d3d051a674fb1ac9d7072adf6694fbced2
4 changes: 2 additions & 2 deletions cookbook/security/login_handlers.rst
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Then, define a new service for this login handler:

.. code-block:: xml

<!-- src/AppBundle/Resources/config/services.xml -->
<!-- app/config/services.xml -->
<?xml version="1.0" encoding="UTF-8" ?>
<container xmlns="http://symfony.com/schema/dic/services"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Expand All @@ -67,7 +67,7 @@ Then, define a new service for this login handler:

.. code-block:: php

// src/AppBundle/Resources/config/services.php
// app/config/services.php
$container->register(
'app.security.success_login',
'AppBundle\Security\SuccesfulLoginHandler'
Expand Down