We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e630664 commit 8e48a1bCopy full SHA for 8e48a1b
src/Controller/ProfilerController.php
@@ -56,7 +56,7 @@ public function __invoke(Request $request, string $token): Response
56
$profile = $this->profiler->loadProfile($token);
57
58
// Type hint as int for the $limit argument of the find method was updated in Symfony 5.4.22 and 6.2.8
59
- $limit = (Kernel::VERSION_ID >= 60208 || (Kernel::MAJOR_VERSION === 5 && Kernel::VERSION_ID >= 50422)) ? 100 : '100';
+ $limit = (Kernel::VERSION_ID >= 60208 || (Kernel::MAJOR_VERSION === 5 && Kernel::VERSION_ID >= 50422)) ? 100 : '100'; // @phpstan-ignore-line
60
61
$tokens = array_map(function ($tokenData) {
62
$profile = $this->profiler->loadProfile($tokenData['token']);
0 commit comments