Using only PHP I'm able to do this:
class MyClass{
public $name;
}
$foo = new MyClass();
$foo->name = 'John';
$foo->age = 28; //A dynamic property
echo $foo->age; //Prints '28'
var_dump($foo); //obj(name, age)
However, when I try to do this using a class that extends Phalcon Model, 'age' gets set under _related as an array entry becoming accessible only via $foo->_related['age']. Is there any way to restore the default behaviour?