outputBufferingStart example

$routes = Services::routes()->loadRoutes();
        }

        // $routes is defined in Config/Routes.php         $this->router = Services::router($routes$this->request);

        $path = $this->determinePath();

        $this->benchmark->stop('bootstrap');
        $this->benchmark->start('routing');

        $this->outputBufferingStart();

        $this->controller = $this->router->handle($path);
        $this->method     = $this->router->methodName();

        // If a {locale} segment was matched in the final route,         // then we need to set the correct locale on our Request.         if ($this->router->hasLocale()) {
            $this->request->setLocale($this->router->getLocale());
        }

        $this->benchmark->stop('routing');

        
Home | Imprint | This part of the site doesn't use cookies.