Skip to content

Commit

Permalink
bug #3614 [Internals] Fix Profiler:find() arguments (bicpi)
Browse files Browse the repository at this point in the history
This PR was merged into the 2.3 branch.

Discussion
----------

[Internals] Fix Profiler:find() arguments

| Q             | A
| ------------- | ---
| Doc fix?      | yes
| New docs?     | no
| Applies to    | all
| Fixed tickets | -

`Symfony\Component\HttpKernel\Profiler\Profiler::find()` signature does not allow for optional `$start` and `$end` arguments, only the Profiler storage classes do. I've added an additional example to clarify the last two arguments.

Commits
-------

d631ce3 [Internals] Fix Profiler:find() arguments
  • Loading branch information
weaverryan committed Mar 8, 2014
2 parents e34204e + d631ce3 commit 4ef746a
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions book/internals.rst
Original file line number Diff line number Diff line change
Expand Up @@ -518,13 +518,16 @@ Use the :method:`Symfony\\Component\\HttpKernel\\Profiler\\Profiler::find`
method to access tokens based on some criteria::

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

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

// get the latest 10 tokens for local requests
$tokens = $container->get('profiler')->find('127.0.0.1', '', 10);
$tokens = $container->get('profiler')->find('127.0.0.1', '', 10, '', '');

// get the latest 10 tokens for requests that happened between 2 and 4 days ago
$tokens = $container->get('profiler')->find('', '', 10, '4 days ago', '2 days ago');

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

0 comments on commit 4ef746a

Please sign in to comment.