* @author Bernhard Schussek * @author Carl Schwan * @since 24.0.0 */ abstract class AbstractDataCollector implements IDataCollector, \JsonSerializable { /** @var array */ protected $data = []; /** * @since 24.0.0 */ public function getName(): string { return static::class; } /** * Reset the state of the profiler. By default it only empties the * $this->data contents, but you can override this method to do * additional cleaning. * @since 24.0.0 */ public function reset(): void { $this->data = []; } /** * @since 24.0.0 */ public function __sleep(): array { return ['data']; } /** * @internal to prevent implementing \Serializable * @since 24.0.0 */ final protected function serialize() { } /** * @internal to prevent implementing \Serializable * @since 24.0.0 */ final protected function unserialize(string $data) { } /** * @since 24.0.0 */ #[\ReturnTypeWillChange] public function jsonSerialize() { return $this->data; } }