Esempio n. 1
0
 public function __construct()
 {
     parent::__construct();
     $this->accessTokens = new ArrayCollection();
     $this->authCodes = new ArrayCollection();
     $this->refreshTokens = new ArrayCollection();
 }
Esempio n. 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;
     }
 }
Esempio n. 3
0
 public function __construct()
 {
     parent::__construct();
 }
Esempio n. 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
 }
Esempio n. 6
0
 public function __construct()
 {
     parent::__construct();
     $this->created_at = new \DateTime();
     $this->updated_at = new \DateTime();
 }
Esempio n. 7
0
 public function __construct()
 {
     parent::__construct();
     $this->setCreatedAt(new \DateTime());
     // your own logic
 }
Esempio n. 8
0
 public function __construct()
 {
     parent::__construct();
     $this->authorizations = new ArrayCollection();
     $this->owners = new ArrayCollection();
     $this->allowedScopes = array('public_profile', 'openid');
 }
Esempio n. 9
0
 public function __construct()
 {
     parent::__construct();
     $this->users = new ArrayCollection();
 }
Esempio n. 10
0
 public function __construct()
 {
     parent::__construct();
     $this->authorizations = new ArrayCollection();
     $this->owners = new ArrayCollection();
     $this->maxNotificationLevel = Notification::LEVEL_NORMAL;
 }