You are here

public function Framework::timerStart in Realistic Dummy Content 3.x

Same name and namespace in other branches
  1. 8.2 api/src/Framework/Framework.php \Drupal\realistic_dummy_content_api\Framework\Framework::timerStart()
  2. 7.2 api/src/Framework/Framework.php \Drupal\realistic_dummy_content_api\Framework\Framework::timerStart()

Starts a timer, see timer_start() in Drupal 7.

Overrides FrameworkInterface::timerStart

1 method overrides Framework::timerStart()
Drupal8::timerStart in api/src/Framework/Drupal8.php
Starts a timer, see timer_start() in Drupal 7.

File

api/src/Framework/Framework.php, line 280

Class

Framework
The entry point for the framework.

Namespace

Drupal\realistic_dummy_content_api\Framework

Code

public function timerStart($id) {
  return $this
    ->implementor()
    ->timerStart($id);
}