Stops the last started section.
The id parameter is used to retrieve the events from this section.
string $id The identifier of the section:
getSectionEvents
public function stopSection($id) {
$this
->stop('__section__');
if (1 == count($this->activeSections)) {
throw new \LogicException('There is no started section to stop.');
}
$this->sections[$id] = array_pop($this->activeSections)
->setId($id);
$this
->stop('__section__.child');
}