JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbrbound('debugbar')) { $this->debugbar = $app['debugbar']; } parent::__construct(null, 'stopwatch'); } public function getDebugbar() { return $this->debugbar; } public function getTokenParsers() { return [ /* * {% measure foo %} * Some stuff which will be recorded on the timeline * {% endmeasure %} */ new MeasureTwigTokenParser(!is_null($this->debugbar), $this->tagName, $this->getName()), ]; } public function startMeasure(...$arg) { if (!$this->debugbar || !$this->debugbar->hasCollector('time')) { return; } $this->debugbar->getCollector('time')->startMeasure(...$arg); } public function stopMeasure(...$arg) { if (!$this->debugbar || !$this->debugbar->hasCollector('time')) { return; } $this->debugbar->getCollector('time')->stopMeasure(...$arg); } }