You are here

class SleepClass in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/doctrine/common/tests/Doctrine/Tests/Common/Proxy/SleepClass.php \Doctrine\Tests\Common\Proxy\SleepClass

Test asset class

Hierarchy

Expanded class hierarchy of SleepClass

File

vendor/doctrine/common/tests/Doctrine/Tests/Common/Proxy/SleepClass.php, line 8

Namespace

Doctrine\Tests\Common\Proxy
View source
class SleepClass {
  public $id;

  /**
   * @return array
   */
  public function __sleep() {
    return array(
      'id',
    );
  }

}

Members