Hi
i found a starange behaviour of Phalcon\Forms\Element\Select
using name "year" i get an error "Object of class DateTime could not be converted to string".
$yearSelect = new \Phalcon\Forms\Element\Select('year',["2015"=>"2015","2016"=>"2016"]);
echo $yearSelect;
Using any other name than "year", the code works as expected.
Bug or undocumented feature?