class FakeAbstractProxy
Hierarchy
- class \Drupal\Tests\Core\Session\FakeAbstractProxy implements \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;
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.