Documentation

PropertyChangedListener

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

Tags
link
www.doctrine-project.org
since
2.0
author

Guilherme Blanco guilhermeblanco@hotmail.com

author

Jonathan Wage jonwage@gmail.com

author

Roman Borschel roman@code-factory.org

Table of Contents

propertyChanged()  : void
Notifies the listener of a property change.

Methods

propertyChanged()

Notifies the listener of a property change.

public propertyChanged(object $sender, string $propertyName, mixed $oldValue, mixed $newValue) : void
Parameters
$sender : object

The object on which the property changed.

$propertyName : string

The name of the property that changed.

$oldValue : mixed

The old value of the property that changed.

$newValue : mixed

The new value of the property that changed.

Return values
void

Search results