Details
Description
Some placement of handler annotation is ignored.
PrePersist is ignored:
/**
* @PrePersist
*
* Will trigger error.
*/
public function error()
{
trigger_error('ERROR');
}
PrePersist works fine:
/**
* @PrePersist
* @foo
*
* Will trigger error.
*/
public function error()
{
trigger_error('ERROR');
}
Is this issue still valid? Is Doctrine Common Beta3 still affected? or is it an ORM issue?