You are here

protected function SessionManager::isCli in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Session/SessionManager.php \Drupal\Core\Session\SessionManager::isCli()
  2. 10 core/lib/Drupal/Core/Session/SessionManager.php \Drupal\Core\Session\SessionManager::isCli()

Returns whether the current PHP process runs on CLI.

Command line clients do not support cookies nor sessions.

Return value

bool

4 calls to SessionManager::isCli()
SessionManager::delete in core/lib/Drupal/Core/Session/SessionManager.php
Ends a specific user's session(s).
SessionManager::regenerate in core/lib/Drupal/Core/Session/SessionManager.php
Regenerates id that represents this storage.
SessionManager::save in core/lib/Drupal/Core/Session/SessionManager.php
Force the session to be saved and closed.
SessionManager::startNow in core/lib/Drupal/Core/Session/SessionManager.php
Forcibly start a PHP session.

File

core/lib/Drupal/Core/Session/SessionManager.php, line 287

Class

SessionManager
Manages user sessions.

Namespace

Drupal\Core\Session

Code

protected function isCli() {
  return PHP_SAPI === 'cli';
}