示例#1
0
 public function __construct()
 {
     parent::__construct();
     $this->accessTokens = new ArrayCollection();
     $this->authCodes = new ArrayCollection();
     $this->refreshTokens = new ArrayCollection();
 }
示例#2
0
 /**
  * @param string $role ( ROLE_WEB | ROLE_MOBILE )
  */
 public function __construct($role = self::ROLE_WEB)
 {
     parent::__construct();
     if ($role == self::ROLE_WEB) {
         $this->role = self::ROLE_MOBILE;
     } else {
         $this->role = self::ROLE_WEB;
     }
 }
示例#3
0
 public function __construct()
 {
     parent::__construct();
 }
示例#4
0
 public function __construct()
 {
     parent::__construct();
     $this->authorizations = new ArrayCollection();
     $this->owners = new ArrayCollection();
     $this->maxNotificationLevel = Notification::LEVEL_NORMAL;
     $this->allowedScopes = array('public_profile', 'openid');
 }
 public function __construct()
 {
     parent::__construct();
     // your own logic
 }
示例#6
0
 public function __construct()
 {
     parent::__construct();
     $this->created_at = new \DateTime();
     $this->updated_at = new \DateTime();
 }
示例#7
0
 public function __construct()
 {
     parent::__construct();
     $this->setCreatedAt(new \DateTime());
     // your own logic
 }
示例#8
0
 public function __construct()
 {
     parent::__construct();
     $this->authorizations = new ArrayCollection();
     $this->owners = new ArrayCollection();
     $this->allowedScopes = array('public_profile', 'openid');
 }
示例#9
0
 public function __construct()
 {
     parent::__construct();
     $this->users = new ArrayCollection();
 }
示例#10
0
 public function __construct()
 {
     parent::__construct();
     $this->authorizations = new ArrayCollection();
     $this->owners = new ArrayCollection();
     $this->maxNotificationLevel = Notification::LEVEL_NORMAL;
 }