Children of this class must store the collected data in the data property.
Author: Fabien Potencier (fabien@symfony.com)
Inheritance: implements Symfony\Component\HttpKernel\DataCollector\DataCollectorInterface, implements Serializable
 public function unserialize($data)
 {
     parent::unserialize($data);
     $this->dataCount = count($this->data);
     self::__construct($this->stopwatch);
 }
Ejemplo n.º 2
0
 public function unserialize($data)
 {
     parent::unserialize($data);
     $charset = array_pop($this->data);
     $fileLinkFormat = array_pop($this->data);
     $this->dataCount = count($this->data);
     self::__construct($this->stopwatch, $fileLinkFormat, $charset);
 }