public function TraceableViewExecutable::getExecuteTime in Devel 4.x
Same name and namespace in other branches
- 8.3 webprofiler/src/Views/TraceableViewExecutable.php \Drupal\webprofiler\Views\TraceableViewExecutable::getExecuteTime()
- 8 webprofiler/src/Views/TraceableViewExecutable.php \Drupal\webprofiler\Views\TraceableViewExecutable::getExecuteTime()
- 8.2 webprofiler/src/Views/TraceableViewExecutable.php \Drupal\webprofiler\Views\TraceableViewExecutable::getExecuteTime()
Gets the execute time.
Return value
float
File
- webprofiler/
src/ Views/ TraceableViewExecutable.php, line 33
Class
- TraceableViewExecutable
- Class TraceableViewExecutable.
Namespace
Drupal\webprofiler\ViewsCode
public function getExecuteTime() {
return property_exists($this, 'execute_time') ? $this->execute_time : 0.0;
}