Symfony version(s) affected
6.0.13, 6.1.5
Description
Laravel official documentation says that to display a file in a user browser a simple return response()->file($filePath) will suffice. Since the current version, 6.0.13 this command will show the binary content of the file, not the file itself!

How to reproduce
return response()->file($pathToFile);
Possible Solution
No response
Additional Context
No response