Exemplo n.º 1
0
 /**
  * Starts a timer, a second call to this method will end the timer and cause the
  * time to be recorded and displayed in the console.
  *
  * @param string $name
  *
  * @return void
  */
 public function log_speed($name = 'Point in time')
 {
     if (!$this->is_enabled()) {
         return;
     }
     $this->_console->log_speed($name);
 }