Added return type to Stopwatch::getSections()

This commit is contained in:
umpirsky 2014-06-06 12:36:27 +02:00
parent 97750f7b02
commit ab003619b7
1 changed files with 3 additions and 0 deletions

View File

@ -33,6 +33,9 @@ class Stopwatch
$this->sections = $this->activeSections = array('__root__' => new Section('__root__'));
}
/**
* @return Section[]
*/
public function getSections()
{
return $this->sections;