You are here

public function Framework::timerStop 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::timerStop()
  2. 7.2 api/src/Framework/Framework.php \Drupal\realistic_dummy_content_api\Framework\Framework::timerStop()

Stops a timer and returns data, see timer_stop() in Drupal 7.

Overrides FrameworkInterface::timerStop

1 method overrides Framework::timerStop()
Drupal8::timerStop in api/src/Framework/Drupal8.php
Stops a timer and returns data, see timer_stop() in Drupal 7.

File

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

Class

Framework
The entry point for the framework.

Namespace

Drupal\realistic_dummy_content_api\Framework

Code

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