1 | <?php |
||
13 | final class SecurityController extends Controller |
||
14 | { |
||
15 | /** |
||
16 | * @Method("public") |
||
17 | * @Security("is_granted('IS_AUTHENTICATED_ANONYMOUSLY')") |
||
18 | */ |
||
19 | 1 | public function publicAction() |
|
23 | |||
24 | /** |
||
25 | * @Method("private") |
||
26 | * @Security("is_granted('IS_AUTHENTICATED_FULLY')") |
||
27 | */ |
||
28 | public function privateAction() |
||
32 | } |
||
33 |