HEX
Server: Apache
System: Linux WWW 6.1.0-40-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.153-1 (2025-09-20) x86_64
User: web11 (1011)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: //var/www/payments-gateway/vendor/doctrine/persistence/src/Persistence/NotifyPropertyChanged.php
<?php

declare(strict_types=1);

namespace Doctrine\Persistence;

/**
 * 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. */
    public function addPropertyChangedListener(PropertyChangedListener $listener): void;
}