1 | <?php |
||
17 | class StopwatchFileFetcher implements FileFetcher { |
||
18 | |||
19 | private $fileFetcher; |
||
20 | private $stopwatch; |
||
21 | private $category; |
||
22 | |||
23 | 5 | public function __construct( FileFetcher $fileFetcher, Stopwatch $stopwatch, string $category ) { |
|
28 | |||
29 | 5 | public function fetchFile( string $fileUrl ): string { |
|
44 | |||
45 | } |
||
46 |