Ojs\ApiBundle\Controller\Admin\UserRestController::getUserAction PHP Метод

getUserAction() публичный Метод

Get single User.
public getUserAction ( integer $id ) : array
$id integer the User id
Результат array
    public function getUserAction($id)
    {
        $entity = $this->getOr404($id);
        if (!$this->isGranted('VIEW', $entity)) {
            throw new AccessDeniedException();
        }
        return $entity;
    }