eZ\Publish\Core\REST\Server\Controller\User::refreshSession PHP Méthode

refreshSession() public méthode

Refresh given session.
Deprecation: Deprecated since 6.5. Use SessionController::refreshSessionAction().
public refreshSession ( string $sessionId, Request $request ) : UserSession
$sessionId string
$request Symfony\Component\HttpFoundation\Request
Résultat eZ\Publish\Core\REST\Server\Values\UserSession
    public function refreshSession($sessionId, Request $request)
    {
        @trigger_error(E_USER_DEPRECATED, 'The session actions from the User controller are deprecated since 6.5. Use the SessionController instead.');
        return $this->sessionController->refreshSessionAction($sessionId, $request);
    }