function PropertyChangedListener::propertyChanged in Zircon Profile 8.0
Same name and namespace in other branches
- 8 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\CommonCode
function propertyChanged($sender, $propertyName, $oldValue, $newValue);