My php version is 7.3.3, phalcon 4.0.0-alpha.3
I start learning phalcon Basic Tutorial,
my document is localhost/phalcon/tutorial
$response = $application->handle(); //just here show a Exception: Wrong number of parameters
I tried https://forum.phalcon.io/discussion/19151/applicationhandle-triggers-a-wrong-number-of-parameters-error-af this method method1: $response = $application->handle(""); // this is working, but not going to each view phtml file
method2: $request = new Phalcon\Http\Request(); $response = $application->handle($request->getURI()); show Exception: PhalconController handler class cannot be loaded //my application directory is localhost/phalcon/tutorial
$application->handle() seems need a string parameter;
so how to solve it