You are here

public function Twig_Profiler_Profile::leave in Translation template extractor 7.3

Stops the profiling.

File

vendor/Twig/Profiler/Profile.php, line 137

Class

Twig_Profiler_Profile
@author Fabien Potencier <fabien@symfony.com>

Code

public function leave() {
  $this->ends = array(
    'wt' => microtime(true),
    'mu' => memory_get_usage(),
    'pmu' => memory_get_peak_usage(),
  );
}