function PropertyChangedListener::propertyChanged in Plug 7
Notifies the listener of a property change.
Parameters
object $sender The object on which the property changed.:
string $propertyName The name of the property that changed.:
mixed $oldValue The old value of the property that changed.:
mixed $newValue The new value of the property that changed.:
Return value
void
File
- lib/
doctrine/ common/ lib/ Doctrine/ Common/ PropertyChangedListener.php, line 44
Class
- PropertyChangedListener
- Contract for classes that are potential listeners of a <tt>NotifyPropertyChanged</tt> implementor.
Namespace
Doctrine\CommonCode
function propertyChanged($sender, $propertyName, $oldValue, $newValue);