[Stopwatch] fix some phpdocs

This commit is contained in:
Tobias Schultze 2019-07-28 22:46:51 +02:00
parent 2113e67715
commit 66dc9069aa
2 changed files with 7 additions and 6 deletions

View File

@ -15,10 +15,9 @@ use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\HttpKernel\KernelInterface; use Symfony\Component\HttpKernel\KernelInterface;
use Symfony\Component\Stopwatch\Stopwatch; use Symfony\Component\Stopwatch\Stopwatch;
use Symfony\Component\Stopwatch\StopwatchEvent;
/** /**
* TimeDataCollector.
*
* @author Fabien Potencier <fabien@symfony.com> * @author Fabien Potencier <fabien@symfony.com>
*/ */
class TimeDataCollector extends DataCollector implements LateDataCollectorInterface class TimeDataCollector extends DataCollector implements LateDataCollectorInterface
@ -77,7 +76,7 @@ class TimeDataCollector extends DataCollector implements LateDataCollectorInterf
/** /**
* Sets the request events. * Sets the request events.
* *
* @param array $events The request events * @param StopwatchEvent[] $events The request events
*/ */
public function setEvents(array $events) public function setEvents(array $events)
{ {
@ -91,7 +90,7 @@ class TimeDataCollector extends DataCollector implements LateDataCollectorInterf
/** /**
* Gets the request events. * Gets the request events.
* *
* @return array The request events * @return StopwatchEvent[] The request events
*/ */
public function getEvents() public function getEvents()
{ {

View File

@ -67,6 +67,8 @@ class Section
return $child; return $child;
} }
} }
return null;
} }
/** /**
@ -110,8 +112,8 @@ class Section
/** /**
* Starts an event. * Starts an event.
* *
* @param string $name The event name * @param string $name The event name
* @param string $category The event category * @param string|null $category The event category
* *
* @return StopwatchEvent The event * @return StopwatchEvent The event
*/ */