klein/klein.php

how to pass the namespace path to a controller

voocel opened this issue · 2 comments

how to pass the namespace path to a controller and action
like this
Macaw::get('/home', 'HomeController@home');

like this?
$klein->respond('GET', '/index', array('Hozzaq\Controller\IndexController', 'index'));

You can use it like this (for non static methods):
$klein->get('/tests', [new \App\Controllers\TestController(), 'index']);