Skip to content

Commit

Permalink
[VarDumper] fix serializing Stub instances
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas-grekas committed Feb 16, 2019
1 parent eb32993 commit 2d3ec5b
Showing 1 changed file with 13 additions and 10 deletions.
23 changes: 13 additions & 10 deletions src/Symfony/Component/VarDumper/Cloner/Stub.php
Expand Up @@ -39,22 +39,25 @@ class Stub
public $position = 0;
public $attr = [];

private static $defaults = [];

/**
* @internal
*/
public function __sleep()
{
$this->serialized = [$this->class, $this->position, $this->cut, $this->type, $this->value, $this->handle, $this->refCount, $this->attr];
$properties = [];

return ['serialized'];
}
if (!isset(self::$defaults[$c = \get_class($this)])) {
self::$defaults[$c] = get_class_vars($c);
}

/**
* @internal
*/
public function __wakeup()
{
list($this->class, $this->position, $this->cut, $this->type, $this->value, $this->handle, $this->refCount, $this->attr) = $this->serialized;
unset($this->serialized);
foreach (self::$defaults[$c] as $k => $v) {
if ($this->$k !== $v) {
$properties[] = $k;
}
}

return $properties;
}
}

0 comments on commit 2d3ec5b

Please sign in to comment.