1 | <?php |
||
20 | final class AccessDecisionManagerFactory implements AccessDecisionManagerFactoryInterface |
||
21 | { |
||
22 | /** |
||
23 | * @var VoterInterface[] |
||
24 | */ |
||
25 | private $voters = []; |
||
26 | |||
27 | 2 | public function addVoter(VoterInterface $voter) |
|
31 | |||
32 | 2 | public function create() : AccessDecisionManagerInterface |
|
36 | } |
||
37 |