Subversion-Projekte lars-tiefland.laravel_shop

Revision

Blame | Letzte Änderung | Log anzeigen | RSS feed

<?php declare(strict_types=1);
namespace PHPHtmlParser;

/**
 * Interface CurlInterface
 *
 * @package PHPHtmlParser
 */
interface CurlInterface
{

    /**
     * This method should return the content of the url in a string
     *
     * @param string $url
     * @param array $options
     * @return string
     */
    public function get(string $url, array $options): string;
}