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 f493a42 commit cfdeef3Copy full SHA for cfdeef3
performance.rst
@@ -331,14 +331,13 @@ Sections are a way to split the profile timeline into groups. Example::
331
$this->stopwatch->stopSection('parsing');
332
333
All events that don't belong to any named section are added to the special section
334
-``__root__``. This way you can get all stopwatch events, even if you don't know
335
-their names::
+called ``__root__``. This way you can get all stopwatch events, even if you don't
+know their names, as follows::
336
337
foreach($this->stopwatch->getSectionEvents('__root__') as $event) {
338
echo (string) $event;
339
}
340
341
-
342
Learn more
343
----------
344
0 commit comments