public function Stopwatch::start in Devel 8
Same name and namespace in other branches
- 8.3 webprofiler/src/Stopwatch.php \Drupal\webprofiler\Stopwatch::start()
- 8.2 webprofiler/src/Stopwatch.php \Drupal\webprofiler\Stopwatch::start()
- 4.x webprofiler/src/Stopwatch.php \Drupal\webprofiler\Stopwatch::start()
Starts an event.
Parameters
string $name The event name:
string $category The event category:
Return value
StopwatchEvent A StopwatchEvent instance
1 call to Stopwatch::start()
- Stopwatch::openSection in webprofiler/
src/ Stopwatch.php - Creates a new section or re-opens an existing section.
File
- webprofiler/
src/ Stopwatch.php, line 86
Class
- Stopwatch
- Class Stopwatch
Namespace
Drupal\webprofilerCode
public function start($name, $category = NULL) {
return end($this->activeSections)
->startEvent($name, $category);
}