1 | <?php |
||
20 | class SecurityChecker implements SecurityCheckerInterface |
||
21 | { |
||
22 | /** |
||
23 | * @var AuthorizationCheckerInterface |
||
24 | */ |
||
25 | private $authorizationChecker; |
||
26 | |||
27 | /** |
||
28 | * @var ParameterResolverInterface |
||
29 | */ |
||
30 | private $parameterResolver; |
||
31 | |||
32 | /** |
||
33 | * @param AuthorizationCheckerInterface $authorizationChecker |
||
34 | * @param ParameterResolverInterface $parameterResolver |
||
35 | */ |
||
36 | 4 | public function __construct( |
|
43 | |||
44 | /** |
||
45 | * {@inheritdoc} |
||
46 | */ |
||
47 | 2 | public function isGranted($action, $object) |
|
55 | } |
||
56 |