Пример #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
 /**
  * {@inheritdoc}
  */
 public function getAllowedGrantTypes()
 {
     if ($this->getMetadata()) {
         return $this->getMetadata()->getGrantTypes();
     }
     return parent::getAllowedGrantTypes();
 }
Пример #5
0
 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->users = new ArrayCollection();
 }
Пример #9
0
 public function __construct()
 {
     parent::__construct();
     $this->authorizations = new ArrayCollection();
     $this->owners = new ArrayCollection();
     $this->maxNotificationLevel = Notification::LEVEL_NORMAL;
 }