$this->
getContainer()->
get('profiler'
)->
enable();
} return parent::
doRequest($request);
} /**
* @param Request $request
*/
protected function doRequestInProcess(object
$request): Response
{ $response = parent::
doRequestInProcess($request);
$this->profiler = false;
return $response;
} /**
* Returns the script to execute when the request must be insulated.
*
* It assumes that the autoloader is named 'autoload.php' and that it is
* stored in the same directory as the kernel (this is the case for the
* Symfony Standard Edition). If this is not your case, create your own
* client and override this method.
*
* @param Request $request
*/