You are here

public function TestSessionBag::clear in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/system/tests/modules/session_test/src/Session/TestSessionBag.php \Drupal\session_test\Session\TestSessionBag::clear()
  2. 9 core/modules/system/tests/modules/session_test/src/Session/TestSessionBag.php \Drupal\session_test\Session\TestSessionBag::clear()

File

core/modules/system/tests/modules/session_test/src/Session/TestSessionBag.php, line 89

Class

TestSessionBag
Test session container.

Namespace

Drupal\session_test\Session

Code

public function clear() : mixed {
  $return = $this->attributes;
  $this->attributes = [];
  return $return;
}