| 1 | <?php |
||
| 17 | class Factory { |
||
| 18 | |||
| 19 | public const STOPWATCH_CATEGORY = 'file_fetcher'; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * Decorator for FileFetcher objects that profiles file fetching calls using Symfony Stopwatch. |
||
| 23 | * |
||
| 24 | * https://packagist.org/packages/symfony/stopwatch |
||
| 25 | * https://symfony.com/doc/current/components/stopwatch.html |
||
| 26 | */ |
||
| 27 | 1 | public function newStopwatchFetcher( FileFetcher $fileFetcher, Stopwatch $stopwatch, string $category = self::STOPWATCH_CATEGORY ): FileFetcher { |
|
| 34 | |||
| 35 | } |
||
| 36 |