Example #1
0
 /**
  * Get client type
  *
  * @return string
  * @throws \Exception
  */
 public function getClientType()
 {
     if (!$this->hasRole("ROLE_CLIENT")) {
         throw new \Exception('User has not role: ROLE_CLIENT.');
     }
     return $this->clientSettings ? $this->clientSettings->getClientType() : '';
 }