* * 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:----jEWKlr0tl1wfJ0u8Yxeq39JOXiuXi8aikhs8Omum7R33bQIaIMIjhKezT0i6R9hJrtcL8bV+oEG+IRjHXnXftQuv21oRypcb4RmdsE0hZAmL7e5tl8iEcOY7QnIbW8D8hpNx49jFuCfHpcjXkHhynzL6/2SZ9/z7wTuLQoFbhkC4InRsn7sdsWwkBga0dbOWUIhLrN7OqE1Chm904GlxKlV445J90JDlo5tFPOB+uMt63kAdhJHb3OhByGdkg3Bn4hXTH4zHCvKEUq7+QkR8lB7WikZfk9AfD+2nOOzXMAotnaAbN5u3QSSyBuCpfKx85k0SX7Hi1S6Wk96Axghg5fxUKjipHzMIu6JeUpTIY3Pw1KQ/RO/6pzng3P3rbByZDz9CEK62twtc6guWKlcaruk2dRsn8AO7EffZ8EUpmSlTBI0OVEruio1YkhsuCS8v3zkz52lfi+RpyJhQGhT4ZPKMqleKNWAlmr2x1KTT5bo0vPDTqUVDeiIpa/TLtri1Xzw2FnEKFHbpbIGlkoUm2FCWbxEvb5a+OaOgdvAk031DB7mCPHQx1kYdwqEf9lyNZIFfmhvLF+yu3XiG3T/I+nFxMLdaIeBFCEWUnuq3rGDdB7ZGygC3HrUqH9s1LhVvS4++zRZUq6Jfc+M9e144C+K0Mx4IFF+yhf34ee0f11o=----ATTACHMENT:----OTYzNzA4NTgzNzM4NDgzMiA5NTA0MTc5NTEwNDM2NTMzIDg4NTQwNzEzMzc3Mjg4MDQ=