You are here

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\Session
View 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

Namesort descending Modifiers Type Description Overrides
FakeAbstractProxy::$id protected property Stores the fake session ID.
FakeAbstractProxy::getId public function
FakeAbstractProxy::setId public function