function PropertyChangedListener::propertyChanged

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.:

File

drupal/core/vendor/doctrine/common/lib/Doctrine/Common/PropertyChangedListener.php, line 46

Class

PropertyChangedListener
Contract for classes that are potential listeners of a <tt>NotifyPropertyChanged</tt> implementor.

Namespace

Doctrine\Common

Code

function propertyChanged($sender, $propertyName, $oldValue, $newValue);