<?php
$app = new Phalcon\Mvc\Micro();
$app->get('/say/welcome/{name}', function ($name) {
echo "Welcome $name!";
});
$app->handle();
i request https://localhost/say/welcome/douma has error
Fatal error: Uncaught exception 'Phalcon\Mvc\Micro\Exception' with message 'Not-Found handler is not callable or is not defined' in
pls help me to fix it