1 | <?php |
||
12 | class LocalStorageBuilder extends AbstractStorageBuilder |
||
13 | { |
||
14 | /** @var FileFetcher */ |
||
15 | private $fetcher; |
||
16 | |||
17 | /** @var string */ |
||
18 | private $filePath; |
||
19 | |||
20 | public function __construct() |
||
24 | |||
25 | /** |
||
26 | * @param string $filePath |
||
27 | */ |
||
28 | public function setPathToTheApacheStatusFileToParseUpfront($filePath) |
||
32 | |||
33 | /** |
||
34 | * @return FetcherInterface |
||
35 | */ |
||
36 | protected function buildFetcher() |
||
49 | } |
||
50 |