Fuente: https://github.com/chamilo/chamilo-lms/releases/download/v1.11.40/chamilo-1.11.40.zip sha256: 1cf4bf2cc7bae1ef1a1eff643235db1d552f78ddf4b6dd1e2d2dac9868679439 Snapshot independiente (rama huerfana); diffable vs 1.11.38. vendor incluido.
26 lines
780 B
PHP
26 lines
780 B
PHP
<?php
|
|
|
|
namespace Doctrine\Persistence;
|
|
|
|
use function interface_exists;
|
|
|
|
/**
|
|
* 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);
|
|
}
|
|
|
|
interface_exists(\Doctrine\Common\NotifyPropertyChanged::class);
|
|
interface_exists(PropertyChangedListener::class);
|