php-hmac-rest-api icon indicating copy to clipboard operation
php-hmac-rest-api copied to clipboard

Routes Problem

Open mmuratts opened this issue 7 years ago • 0 comments

Hello there, I have route problem

$routes[] = [ 'method' => 'get', 'route' => '/ping', 'handler' => ['Controllers\ExampleController', 'pingAction'] ];

does not work but when I write

$routes[] = [ 'method' => 'get', 'route' => '/ping', 'handler' => function() { echo "test"; } ];

its work.

thanks.

mmuratts avatar Nov 18 '17 09:11 mmuratts