Subversion-Projekte lars-tiefland.laravel_shop

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
365 lars 1
<?php declare(strict_types=1);
2
namespace PHPHtmlParser;
3
 
4
/**
5
 * Interface CurlInterface
6
 *
7
 * @package PHPHtmlParser
8
 */
9
interface CurlInterface
10
{
11
 
12
    /**
13
     * This method should return the content of the url in a string
14
     *
15
     * @param string $url
16
     * @param array $options
17
     * @return string
18
     */
19
    public function get(string $url, array $options): string;
20
}