You are here

protected function SessionManager::isCli in Drupal 10

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Session/SessionManager.php \Drupal\Core\Session\SessionManager::isCli()
  2. 9 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

File

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

Class

SessionManager
Manages user sessions.

Namespace

Drupal\Core\Session

Code

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