| 1 | <?php |
||
| 13 | class RemoteStorageBuilder extends AbstractStorageBuilder |
||
| 14 | { |
||
| 15 | /** @var HttpFetcher */ |
||
| 16 | private $fetcher; |
||
| 17 | |||
| 18 | /** @var string */ |
||
| 19 | private $url; |
||
| 20 | |||
| 21 | public function __construct() |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @param string $url |
||
| 32 | */ |
||
| 33 | public function setUrlToTheApacheStatusFileToParseUpfront($url) |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @return FetcherInterface |
||
| 40 | */ |
||
| 41 | protected function buildFetcher() |
||
| 54 | } |
||
| 55 |