. */ namespace Doctrine\Common; /** * Contract for classes that provide the service of notifying listeners of * changes to their properties. * * @author robo * @since 2.0 */ interface NotifyPropertyChanged { public function addPropertyChangedListener(PropertyChangedListener $listener); }