MagicSleepClass.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/MagicSleepClass.phpView source
<?php
namespace Doctrine\Tests\Common\Proxy;
/**
* Test asset class
*/
class MagicSleepClass {
/**
* @var string
*/
public $id = 'id';
/**
* @var string
*/
public $publicField = 'publicField';
/**
* @var string
*/
public $serializedField = 'defaultValue';
/**
* @var string
*/
public $nonSerializedField = 'defaultValue';
/**
* @return array
*/
public function __sleep() {
return array(
'serializedField',
);
}
}
Classes
Name | Description |
---|---|
MagicSleepClass | Test asset class |