public function StopwatchEvent::ensureStopped in Devel 8
Same name and namespace in other branches
- 8.3 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 396
Class
- StopwatchEvent
- Class StopwatchEvent
Namespace
Drupal\webprofilerCode
public function ensureStopped() {
while (count($this->started)) {
$this
->stop();
}
}