I am a total rookie in CakePHP.
I have this code in the index file of my CakePHP project
$Dispatcher->dispatch(
new CakeRequest(),
new CakeResponse()
);
What does this code do? Is it calling the content of the index.php file?
I want to change the index page and I cannot find where the content is coming from.