public function Request::hasSession

Whether the request contains a Session object.

@api

Return value

boolean

1 call to Request::hasSession()
Request::hasPreviousSession in drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Request.php
Whether the request contains a Session which was started in one of the previous requests.

File

drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Request.php, line 565

Class

Request
Request represents an HTTP request.

Namespace

Symfony\Component\HttpFoundation

Code

public function hasSession() {
  return null !== $this->session;
}