File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
src/Symfony/Bridge/Twig/Extension 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 \Bridge \Twig \Extension ;
13
13
14
- use Symfony \Component \Routing \Generator \UrlGeneratorInterface ;
15
14
use Symfony \Component \Security \Http \Logout \LogoutUrlGenerator ;
16
15
17
16
/**
@@ -48,7 +47,7 @@ public function getFunctions()
48
47
*/
49
48
public function getLogoutPath ($ key = null )
50
49
{
51
- return $ this ->generator ->getLogoutPath ($ key, UrlGeneratorInterface:: ABSOLUTE_PATH );
50
+ return $ this ->generator ->getLogoutPath ($ key );
52
51
}
53
52
54
53
/**
@@ -60,7 +59,7 @@ public function getLogoutPath($key = null)
60
59
*/
61
60
public function getLogoutUrl ($ key = null )
62
61
{
63
- return $ this ->generator ->getLogoutUrl ($ key, UrlGeneratorInterface:: ABSOLUTE_URL );
62
+ return $ this ->generator ->getLogoutUrl ($ key );
64
63
}
65
64
66
65
/**
You can’t perform that action at this time.
0 commit comments