File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
src/Symfony/Bundle/SecurityBundle/Templating/Helper Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 11
11
12
12
namespace Symfony \Bundle \SecurityBundle \Templating \Helper ;
13
13
14
- use Symfony \Component \Routing \Generator \UrlGeneratorInterface ;
15
14
use Symfony \Component \Security \Http \Logout \LogoutUrlGenerator ;
16
15
use Symfony \Component \Templating \Helper \Helper ;
17
16
@@ -38,7 +37,7 @@ public function __construct(LogoutUrlGenerator $generator)
38
37
*/
39
38
public function getLogoutPath ($ key )
40
39
{
41
- return $ this ->generator ->getLogoutPath ($ key, UrlGeneratorInterface:: ABSOLUTE_PATH );
40
+ return $ this ->generator ->getLogoutPath ($ key );
42
41
}
43
42
44
43
/**
@@ -50,7 +49,7 @@ public function getLogoutPath($key)
50
49
*/
51
50
public function getLogoutUrl ($ key )
52
51
{
53
- return $ this ->generator ->getLogoutUrl ($ key, UrlGeneratorInterface:: ABSOLUTE_URL );
52
+ return $ this ->generator ->getLogoutUrl ($ key );
54
53
}
55
54
56
55
/**
You can’t perform that action at this time.
0 commit comments