1 | <?php |
||
17 | class SitemapClient implements ClientInterface |
||
18 | { |
||
19 | /** |
||
20 | * Sitemaps |
||
21 | * @var string[] |
||
22 | */ |
||
23 | private $sitemaps = []; |
||
24 | |||
25 | /** |
||
26 | * SitemapClient constructor. |
||
27 | * |
||
28 | * @param string[] $sitemaps |
||
29 | */ |
||
30 | public function __construct(array $sitemaps) |
||
34 | |||
35 | /** |
||
36 | * Export |
||
37 | * |
||
38 | * @return string[] |
||
39 | */ |
||
40 | public function export() |
||
44 | } |
||
45 |