コード例 #1
0
ファイル: ShowVoterTest.php プロジェクト: dstansby/camdram
 public function setUp()
 {
     $this->aclProvider = $this->getMockBuilder('\\Acts\\CamdramSecurityBundle\\Security\\Acl\\AclProvider')->disableOriginalConstructor()->getMock();
     $this->voter = new ShowVoter($this->aclProvider);
     $this->user = new User();
     $this->token = new UsernamePasswordToken($this->user, 'password', 'public', $this->user->getRoles());
 }