stopMeasure() public method

Stops a measure
public stopMeasure ( string $name )
$name string
Ejemplo n.º 1
0
 /**
  * Stops a measure
  *
  * @param string $name
  * @static 
  */
 public static function stopMeasure($name)
 {
     return \Barryvdh\Debugbar\LaravelDebugbar::stopMeasure($name);
 }
Ejemplo n.º 2
0
 /**
  * @param string $name
  */
 protected function stopDebugMeasure($name)
 {
     if ($this->debugBar) {
         $this->debugBar->stopMeasure($name);
     }
 }