1 | <?php |
||
27 | class DisableCSRFExtension extends AbstractTypeExtension |
||
28 | { |
||
29 | private $tokenStorage; |
||
30 | private $role; |
||
31 | private $authorizationChecker; |
||
32 | |||
33 | public function __construct(TokenStorageInterface $tokenStorage, string $role, AuthorizationCheckerInterface $authorizationChecker) |
||
39 | |||
40 | public function configureOptions(OptionsResolver $resolver): void |
||
54 | |||
55 | public static function getExtendedTypes(): iterable |
||
59 | } |
||
60 |