I have set this in my bootstrap file:
$debug = new \Phalcon\Debug(); $debug->listen();
I have made the following to generate an error in my index method of my Client controller:
public function indexAction() {
$Cities = City::find(1,2,3, array( "order" => "updated DESC", "limit" => 10) ); $this->view->setVar("Cities", $Cities);
}
This generates a white page with the text
I can't seem to get any real error display. All errors with the framework seem to be of this format, without saying where anything occurred. I am on Phalcon Version: 3.0.3 , PHP Version: 5.6.28 and Phalcon DevTools Version: 3.0.4 Is there something that I am doing wrong?
Many Thanks