Current Path : /var/www/html/newsite/wp-content/plugins/mailpoet/vendor-prefixed/twig/twig/src/ |
Current File : /var/www/html/newsite/wp-content/plugins/mailpoet/vendor-prefixed/twig/twig/src/Markup.php |
<?php namespace MailPoetVendor\Twig; if (!defined('ABSPATH')) exit; class Markup implements \Countable, \JsonSerializable { private $content; private $charset; public function __construct($content, $charset) { $this->content = (string) $content; $this->charset = $charset; } public function __toString() { return $this->content; } #[\ReturnTypeWillChange] public function count() { return \mb_strlen($this->content, $this->charset); } #[\ReturnTypeWillChange] public function jsonSerialize() { return $this->content; } }