Hi everyone!
First of all thanks for this great framework!!!
I'm trying to extends \Phalcon\Tag class, to override the getValue() method. I want to get value from the POST array for the form fields with names like array (e.g. user[email]).
But when I simply extends the class:
namespace ...;
class Tag extends \Phalcon\Tag {
}
stopped working the setDefault() method :( Also desired function getValue() do not overridden.
As I understand it this is due with static methods and properties of the class. But how to solve this problem, I don't know. Help advice, please!