function TraceableViewExecutable::getExecuteTime

Gets the execute time.

Return value

float

File

webprofiler/src/Views/TraceableViewExecutable.php, line 33

Class

TraceableViewExecutable
Class TraceableViewExecutable

Namespace

Drupal\webprofiler\Views

Code

public function getExecuteTime() {
    return property_exists($this, 'execute_time') ? $this->execute_time : 0.0;
}