From d631ce39b586065f37e93c12c0f1338fa1a01a82 Mon Sep 17 00:00:00 2001
From: Philipp Rieber
Date: Wed, 26 Feb 2014 21:55:45 +0100
Subject: [PATCH] [Internals] Fix Profiler:find() arguments
---
book/internals.rst | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/book/internals.rst b/book/internals.rst
index f7467a58d7e..7ed0cbe2272 100644
--- a/book/internals.rst
+++ b/book/internals.rst
@@ -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