class FakeAbstractProxy in Drupal 9
Hierarchy
- class \Drupal\Tests\Core\Session\FakeAbstractProxy extends \Symfony\Component\HttpFoundation\Session\Storage\Proxy\AbstractProxy
Expanded class hierarchy of FakeAbstractProxy
File
- core/
tests/ Drupal/ Tests/ Core/ Session/ SessionManagerTest.php, line 40
Namespace
Drupal\Tests\Core\SessionView source
class FakeAbstractProxy extends AbstractProxy {
/**
* Stores the fake session ID.
*
* @var string
*/
protected $id;
public function setId($id) {
$this->id = $id;
}
public function getId() {
return $this->id;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
FakeAbstractProxy:: |
protected | property | Stores the fake session ID. | |
FakeAbstractProxy:: |
public | function | ||
FakeAbstractProxy:: |
public | function |