Hi,
Is it possible to use doctrine on existing entity models like:
class user{
protected $_id;
protected $_name;
public function set_id($_id){}
public function get_id(){}
public function set_name($_name){}
public function get_name(){}
}
or to generate or use models with hard-coded getters and setters.
I dont want to use
$user->name
$user['name']
$user->get('name')
can this be done with doctrine?
Thanx