Returns the time.
Return value
string The time
File
- drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Profiler/Profile.php, line 160
Class
- Profile
- Profile.
Namespace
Symfony\Component\HttpKernel\Profiler
Code
public function getTime() {
if (null === $this->time) {
return 0;
}
return $this->time;
}