SleepClass.php in Zircon Profile 8
Same filename and directory in other branches
Namespace
Doctrine\Tests\Common\ProxyFile
vendor/doctrine/common/tests/Doctrine/Tests/Common/Proxy/SleepClass.phpView source
<?php
namespace Doctrine\Tests\Common\Proxy;
/**
* Test asset class
*/
class SleepClass {
public $id;
/**
* @return array
*/
public function __sleep() {
return array(
'id',
);
}
}
Classes
Name | Description |
---|---|
SleepClass | Test asset class |