class FakeAbstractProxy

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

Title Sort descending Modifiers Object type Summary
FakeAbstractProxy::$id protected property Stores the fake session ID.
FakeAbstractProxy::getId public function
FakeAbstractProxy::setId public function

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.