Update Composer, update everything
This commit is contained in:
parent
ea3e94409f
commit
dda5c284b6
19527 changed files with 1135420 additions and 351004 deletions
20
vendor/doctrine/persistence/lib/Doctrine/Common/NotifyPropertyChanged.php
vendored
Normal file
20
vendor/doctrine/persistence/lib/Doctrine/Common/NotifyPropertyChanged.php
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
<?php
|
||||
|
||||
namespace Doctrine\Common;
|
||||
|
||||
/**
|
||||
* Interface for classes that notify event listeners of changes to their managed properties.
|
||||
*
|
||||
* This interface is implemented by objects that manually want to notify their object manager or
|
||||
* other listeners when properties change, instead of relying on the object manager to compute
|
||||
* property changes itself when changes are to be persisted.
|
||||
*/
|
||||
interface NotifyPropertyChanged
|
||||
{
|
||||
/**
|
||||
* Adds a listener that wants to be notified about property changes.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function addPropertyChangedListener(PropertyChangedListener $listener);
|
||||
}
|
Reference in a new issue