%PDF- %PDF-
Direktori : /var/www/pn/utils/vendor/paquettg/php-html-parser/src/PHPHtmlParser/Contracts/ |
Current File : /var/www/pn/utils/vendor/paquettg/php-html-parser/src/PHPHtmlParser/Contracts/DomInterface.php |
<?php declare(strict_types=1); namespace PHPHtmlParser\Contracts; use PHPHtmlParser\Dom; use PHPHtmlParser\Options; use Psr\Http\Client\ClientInterface; use Psr\Http\Message\RequestInterface; interface DomInterface { public function loadFromFile(string $file, ?Options $options = null): Dom; public function loadFromUrl(string $url, ?Options $options, ?ClientInterface $client = null, ?RequestInterface $request = null): Dom; public function loadStr(string $str, ?Options $options = null): Dom; public function setOptions(Options $options): Dom; public function find(string $selector, int $nth = null); }