I have a route:
$api->add('/is_unique_term/{term}', ['action' => 'isUniqueTerm']);
That is my action for the route:
public function isUniqueTermAction(string $term)
But when i try to send cyrillic symbols in the term part Phalcon removes my symbols and heads to other route.
Does someone know about this?