Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
28 | public function onLogoutSuccess(Request $request) |
||
29 | { |
||
30 | if ($request->server->has($this->shibUaid)) { |
||
31 | return new RedirectResponse($this->router->generate('shib_logout', |
||
32 | array( |
||
33 | 'return' => $this->router->generate('login') |
||
34 | ))); |
||
35 | } else { |
||
36 | return new RedirectResponse($this->router->generate('login')); |
||
37 | } |
||
40 |