You are here

function PropertyChangedListener::propertyChanged in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/doctrine/common/lib/Doctrine/Common/PropertyChangedListener.php \Doctrine\Common\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.:

Return value

void

File

vendor/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\Common

Code

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