| 1 | <?php |
||
| 9 | class SitemapClient implements ClientInterface |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * Sitemaps |
||
| 13 | * @var string[] |
||
| 14 | */ |
||
| 15 | private $sitemaps = []; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * SitemapClient constructor. |
||
| 19 | * |
||
| 20 | * @param string[] $sitemaps |
||
| 21 | */ |
||
| 22 | public function __construct(array $sitemaps) |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Export |
||
| 29 | * |
||
| 30 | * @return string[] |
||
| 31 | */ |
||
| 32 | public function export() |
||
| 36 | } |
||
| 37 |