data; } /** * {@inheritdoc} * * @see FilterInterface::toFilePointer() */ public function toFilePointer() { return $this->buildFilePointer($this->toString()); } /** * {@inheritdoc} * * @see FileInterface::size() */ public function size(): int { return mb_strlen($this->data); } /** * {@inheritdoc} * * @see FileInterface::__toString() */ public function __toString(): string { return $this->toString(); } }