Files
piratepoet/lib/Util/pQuery/pQuery.php
Pavel Dohnal 672b0c272e Check type for PHPStan
[MAILPOET-2535]
2019-11-20 10:24:39 +00:00

18 lines
467 B
PHP

<?php
namespace MailPoet\Util\pQuery;
// extend pQuery class to use UTF-8 encoding when getting elements' inner/outer text
class pQuery extends \pQuery {
public static function parseStr($html) {
$parser = new Html5Parser($html);
if (!$parser->root instanceof \pQuery\DomNode) {
// this condition shouldn't happen it is here only for PHPStan
throw new \Exception('Renderer is not configured correctly');
}
return $parser->root;
}
}