| Current Path : /home/rtorresani/www/vendor/laminas/laminas-eventmanager/src/ |
| Current File : //home/rtorresani/www/vendor/laminas/laminas-eventmanager/src/SharedEventsCapableInterface.php |
<?php
namespace Laminas\EventManager;
/**
* Interface indicating that an object composes or can compose a
* SharedEventManagerInterface instance.
*/
interface SharedEventsCapableInterface
{
/**
* Retrieve the shared event manager, if composed.
*
* @return null|SharedEventManagerInterface
*/
public function getSharedManager();
}