芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/tepakanyucatan.gob.mx/libraries/vendor/joomla/application/src/WebApplication.php
controllerResolver = $controllerResolver; $this->router = $router; // Call the constructor as late as possible (it runs `initialise`). parent::__construct($input, $config, $client, $response); } /** * Method to run the application routines. * * @return void * * @since 2.0.0 */ protected function doExecute(): void { $route = $this->router->parseRoute($this->get('uri.route'), $this->input->getMethod()); // Add variables to the input if not already set foreach ($route->getRouteVariables() as $key => $value) { $this->input->def($key, $value); } \call_user_func($this->controllerResolver->resolve($route)); } }