You are here

class SetStateClass in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/PhpFileCacheTest.php \Doctrine\Tests\Common\Cache\SetStateClass

Hierarchy

Expanded class hierarchy of SetStateClass

File

vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/PhpFileCacheTest.php, line 119

Namespace

Doctrine\Tests\Common\Cache
View source
class SetStateClass extends NotSetStateClass {
  public static $values = array();
  public static function __set_state($data) {
    self::$values = $data;
    return new self($data['value']);
  }

}

Members