Doctrine\Common\PropertyChangedListener
/Doctrine/Common/PropertyChangedListener.php at line 36
Interface PropertyChangedListener
PropertyChangedListener
public interface PropertyChangedListener
- License:
- http://www.opensource.org/licenses/lgpl-license.php LGPL
- See Also:
www.doctrine-project.org
- Since:
- 2.0
- Version:
- $Revision: 3938 $
- Author:
- Guilherme Blanco
- Jonathan Wage
- Roman Borschel
Method Summary |
void |
propertyChanged(object sender, string propertyName, mixed oldValue, mixed newValue) Notifies the listener of a property change. |
Method Detail
/Doctrine/Common/PropertyChangedListener.php at line 46
propertyChanged
public void propertyChanged(object sender, string propertyName, mixed oldValue, mixed newValue)
Notifies the listener of a property change.
- Parameters:
- sender - The object on which the property changed.
- propertyName - The name of the property that changed.
- oldValue - The old value of the property that changed.
- newValue - The new value of the property that changed.
Contract for classes that are potential listeners of a NotifyPropertyChanged implementor.