/var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/debug_kit/src/Controller
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/debug_kit/src/Controller/RequestsController.php (1660B)
response = $this->response->withHeader('Content-Security-Policy', '');
}
/**
* Before render handler.
*
* @param \Cake\Event\EventInterface $event The event.
* @return void
*/
public function beforeRender(EventInterface $event)
{
$this->viewBuilder()
->setLayout('DebugKit.toolbar')
->setClassName('DebugKit.Ajax');
}
/**
* View a request's data.
*
* @param string $id The id.
* @return void
*/
public function view($id = null)
{
$toolbar = $this->Requests->get($id, ['contain' => 'Panels']);
$this->set('toolbar', $toolbar);
}
}