From ab003619b71538176d30cdfab92f3d839a884248 Mon Sep 17 00:00:00 2001 From: umpirsky Date: Fri, 6 Jun 2014 12:36:27 +0200 Subject: [PATCH] Added return type to Stopwatch::getSections() --- src/Symfony/Component/Stopwatch/Stopwatch.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Symfony/Component/Stopwatch/Stopwatch.php b/src/Symfony/Component/Stopwatch/Stopwatch.php index aa85033cb2..c1bec426a6 100644 --- a/src/Symfony/Component/Stopwatch/Stopwatch.php +++ b/src/Symfony/Component/Stopwatch/Stopwatch.php @@ -33,6 +33,9 @@ class Stopwatch $this->sections = $this->activeSections = array('__root__' => new Section('__root__')); } + /** + * @return Section[] + */ public function getSections() { return $this->sections;