Files
Chamilo/vendor/doctrine/persistence/lib/Doctrine/Common/NotifyPropertyChanged.php
2025-04-10 12:24:57 +02:00

17 lines
295 B
PHP

<?php
namespace Doctrine\Common;
use function class_alias;
class_alias(
\Doctrine\Persistence\NotifyPropertyChanged::class,
__NAMESPACE__ . '\NotifyPropertyChanged'
);
if (false) {
interface NotifyPropertyChanged extends \Doctrine\Persistence\NotifyPropertyChanged
{
}
}