Phalcon is eating up the 123 part of the following URL through the dispatcher
// controller/123/param
echo $this->dispatcher->getControllerName(); // controller
echo $this->dispatcher->getActionName(); // index
echo $this->dispatcher->getParams(); // [0=>'param']
Where did 123 go? Is there a simple way to make this available to my applications by default so that for all URLs of the form /foo/123/slug the IndexAction gets params [123, slug] instead of just ['slug']?
Thanks