Files
kulakpos_web/vendor/doctrine/event-manager/src/EventManagerInterface.php

14 lines
279 B
PHP
Raw Normal View History

2026-04-18 20:32:18 +07:00
<?php
declare(strict_types=1);
namespace Doctrine\Common;
/** Provided for convenience, but consider using the individual interfaces directly. */
interface EventManagerInterface extends
EventListenerIntrospector,
EventListenerRegistry,
EventSubscriberRegistry
{
}