I am using Restler 2.1.5 and i have a class with the index method protected.
protected function index($id){
//do something
}
I added new protected method but not able to call that method.
protected function method(){
//do stuff
}
When i call http://localhost/api/index.php/class?key=foo
it runs all OK
But when i call
http://localhost/api/index.php/method?key=foo
it gives me not found
What can be causing this?