1 | <?php |
||
8 | class PublicSuffixProvider implements SuffixProviderInterface |
||
9 | { |
||
10 | /** |
||
11 | * @var Client |
||
12 | */ |
||
13 | private $client; |
||
14 | |||
15 | /** |
||
16 | * @var string |
||
17 | */ |
||
18 | private $listUrl; |
||
19 | |||
20 | /** |
||
21 | * @var array |
||
22 | */ |
||
23 | private $cache; |
||
24 | |||
25 | /** |
||
26 | * @inheritDoc |
||
27 | */ |
||
28 | public function __construct( |
||
36 | |||
37 | /** |
||
38 | * @param bool $force |
||
39 | */ |
||
40 | public function fetchSuffixes(bool $force = false): void |
||
74 | |||
75 | /** |
||
76 | * @inheritDoc |
||
77 | */ |
||
78 | public function getSuffixes(): iterable |
||
83 | } |
||
84 |