芝麻web文件管理V1.00
编辑当前文件:/home/rejoandoctor/public_html/vendor/barryvdh/laravel-debugbar/src/Twig/Extension/Stopwatch.php
bound('debugbar')) { $this->debugbar = $app['debugbar']; } else { $this->debugbar = null; } } /** * {@inheritDoc} */ public function getName() { return 'stopwatch'; } public function getTokenParsers() { return [ /* * {% stopwatch foo %} * Some stuff which will be recorded on the timeline * {% endstopwatch %} */ new StopwatchTokenParser($this->debugbar !== null), ]; } public function getDebugbar() { return $this->debugbar; } }