Exemplo n.º 1
0
 /**
  *
  */
 public function identity($prop = null)
 {
     if (!$this->authService->hasIdentity()) {
         return;
     }
     $identity = $this->authService->getIdentity();
     if (null !== $prop) {
         return $identity->{$prop};
     }
     return $identity;
 }