session->data['debug'][$route] = microtime(true); } */ } /** * @param string $route * @param array $args * @param mixed $output * * @return void */ public function after(string $route, array &$args, mixed &$output): void { // add the route you want to test /* if ($route == 'common/home') { if (isset($this->session->data['debug'][$route])) { $log_data = [ 'route' => $route, 'time' => microtime(true) - $this->session->data['debug'][$route] ]; $this->log->write($log_data); } } */ } }