Let's say I have a URI look like this:
/list/[one][two][three]/pick/124
To make sure the url is always in the right format, I tried to add a router look like this:
/list/{list:(\[[^\[]+\])+}/pick/{count:[0-9]+}
and then when I access the parameters inside the controller, getParam('list') works just fine, but getParam('count') return '[three]' instead of 124.
Is this a Phalcon bug, or I'm doing something wrong?
Edit: I think the behaviour is weird because phalcon also uses ( and ) for placeholder.