Added return type to Stopwatch::getSections()

This commit is contained in:
umpirsky 2014-06-06 12:36:27 +02:00
parent 97750f7b02
commit ab003619b7

View File

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