Skip to content

Commit d631ce3

Browse files
committed
[Internals] Fix Profiler:find() arguments
1 parent fc0aa8b commit d631ce3

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

book/internals.rst

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -518,13 +518,16 @@ Use the :method:`Symfony\\Component\\HttpKernel\\Profiler\\Profiler::find`
518518
method to access tokens based on some criteria::
519519

520520
// get the latest 10 tokens
521-
$tokens = $container->get('profiler')->find('', '', 10);
521+
$tokens = $container->get('profiler')->find('', '', 10, '', '');
522522

523523
// get the latest 10 tokens for all URL containing /admin/
524-
$tokens = $container->get('profiler')->find('', '/admin/', 10);
524+
$tokens = $container->get('profiler')->find('', '/admin/', 10, '', '');
525525

526526
// get the latest 10 tokens for local requests
527-
$tokens = $container->get('profiler')->find('127.0.0.1', '', 10);
527+
$tokens = $container->get('profiler')->find('127.0.0.1', '', 10, '', '');
528+
529+
// get the latest 10 tokens for requests that happened between 2 and 4 days ago
530+
$tokens = $container->get('profiler')->find('', '', 10, '4 days ago', '2 days ago');
528531

529532
If you want to manipulate profiling data on a different machine than the one
530533
where the information were generated, use the

0 commit comments

Comments
 (0)