fixed typos

This commit is contained in:
Fabien Potencier 2015-01-21 04:50:33 +01:00
parent cc8abb210f
commit 3d174a4058

View File

@ -12,7 +12,6 @@
namespace Symfony\Bundle\SecurityBundle\Templating\Helper; namespace Symfony\Bundle\SecurityBundle\Templating\Helper;
use Symfony\Component\DependencyInjection\ContainerInterface; use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\HttpFoundation\RequestStack;
use Symfony\Component\Routing\Generator\UrlGeneratorInterface; use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
use Symfony\Component\Security\Http\Logout\LogoutUrlGenerator; use Symfony\Component\Security\Http\Logout\LogoutUrlGenerator;
use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface; use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface;
@ -25,7 +24,7 @@ use Symfony\Component\Templating\Helper\Helper;
*/ */
class LogoutUrlHelper extends Helper class LogoutUrlHelper extends Helper
{ {
private $requestStack; private $generator;
private $listeners = array(); private $listeners = array();
private $router; private $router;
private $tokenStorage; private $tokenStorage;
@ -42,7 +41,7 @@ class LogoutUrlHelper extends Helper
*/ */
public function __construct($generator, UrlGeneratorInterface $router = null, TokenStorageInterface $tokenStorage = null) public function __construct($generator, UrlGeneratorInterface $router = null, TokenStorageInterface $tokenStorage = null)
{ {
if ($requestStack instanceof ContainerInterface) { if ($generator instanceof ContainerInterface) {
trigger_error('The '.__CLASS__.' constructor will require a LogoutUrlGenerator instead of a ContainerInterface instance in 3.0.', E_USER_DEPRECATED); trigger_error('The '.__CLASS__.' constructor will require a LogoutUrlGenerator instead of a ContainerInterface instance in 3.0.', E_USER_DEPRECATED);
if ($container->has('security.logout_url_generator')) { if ($container->has('security.logout_url_generator')) {