<?php readfile(string $filename, bool $use_include_path = false, ?resource $context = null): int|false
<?php $response = (new Cache)->handle(new Request, function () { return new StreamedResponse(function () { $filePath = __DIR__.'/../fixtures/test.txt'; readfile($filePath); }); }, 'max_age=120;s_maxage=60');