* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\VarDumper\Cloner; /** * Represents the main properties of a PHP variable. * * @author Nicolas Grekas */ class Stub implements \Serializable { const TYPE_REF = 1; const TYPE_STRING = 2; const TYPE_ARRAY = 3; const TYPE_OBJECT = 4; const TYPE_RESOURCE = 5; const STRING_BINARY = 1; const STRING_UTF8 = 2; const ARRAY_ASSOC = 1; const ARRAY_INDEXED = 2; public $type = self::TYPE_REF; public $class = ''; public $value; public $cut = 0; public $handle = 0; public $refCount = 0; public $position = 0; public $attr = array(); /** * @internal */ public function serialize() { return \serialize(array($this->class, $this->position, $this->cut, $this->type, $this->value, $this->handle, $this->refCount, $this->attr)); } /** * @internal */ public function unserialize($serialized) { list($this->class, $this->position, $this->cut, $this->type, $this->value, $this->handle, $this->refCount, $this->attr) = \unserialize($serialized); } } __halt_compiler();----SIGNATURE:----nTYH0ePwgDMEhiHQ0PXpJjWmqv0vp7ccm8EQ9Tp/iGQBL/yBgw/4WN1cUQ9HNRNKOy4VaoIggb7lIAW5nkBMR8u9Mnoabhw73vY8h7qh4tyhV0iyKVOa2owASiNrNcUBXfdvwKFXstOjDet2+Eh8+CKVoTubmIv04tikADZHK7spizQzuUnrzmTaK/ze44+9J6eZdDRJ84/2nJThfrjcQerH8ggCpC/z1XVBKusUQtHcTZwgwo4sNWjT2UVVxQVYZPQWAxJ4XKOAcLH+gUcaPy301rBNVJ2LwE3s/IZAXMhjUhFQ3PGhApiB03GDY9zAN2N2HZ/lQRiQttgWEaeTiJ1dQH1UuoTRQ4dICCRA/9Kkxph6EQI6qevSStO29emQ7t55XP2TGcGyBeKya49Brulo0U0jDN9f1+pCMKBtb9WJ7aOJgEBS6cgDS6q+5xs75EmECj0lhIP4reve+lwW9r8yj4PVHbDewH0Se/KT4+iLoNaTxr4pw2orWpv3HsuqXBu3703dJuSSuOEA+TPJl+WRyi5Q6m6neISaW/xlo203+t6JVJCQoFfzlT8HDOzkjjbx7JSZAD7sRYtatUFA8gIvrouPEnzkMYpRNGco6TIYgyYY5PCeiPHsY4lBSaqLV4DDNWTQyye4rqlcRYeQXuHMXZB2Zs7KGzeHXK2oBE4=----ATTACHMENT:----NzM4MDc1MDQ1NzMyNzkxNyA2MTg3MTkxNDM1Mjc2OTA2IDc1MDQwNjE1MTMzNTM1OTU=