public function StopwatchEvent::ensureStopped in Devel 8.3
Same name and namespace in other branches
- 8 webprofiler/src/Stopwatch.php \Drupal\webprofiler\StopwatchEvent::ensureStopped()
- 8.2 webprofiler/src/Stopwatch.php \Drupal\webprofiler\StopwatchEvent::ensureStopped()
- 4.x webprofiler/src/Stopwatch.php \Drupal\webprofiler\StopwatchEvent::ensureStopped()
Stops all non already stopped periods.
File
- webprofiler/
src/ Stopwatch.php, line 445
Class
- StopwatchEvent
- Class StopwatchEvent.
Namespace
Drupal\webprofilerCode
public function ensureStopped() {
while (count($this->started)) {
$this
->stop();
}
}