mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-27 00:58:20 +08:00
17 lines
236 B
PHP
17 lines
236 B
PHP
|
<?php
|
||
|
|
||
|
namespace GuzzleHttp\Event;
|
||
|
|
||
|
/**
|
||
|
* Holds an event emitter
|
||
|
*/
|
||
|
interface HasEmitterInterface
|
||
|
{
|
||
|
/**
|
||
|
* Get the event emitter of the object
|
||
|
*
|
||
|
* @return EmitterInterface
|
||
|
*/
|
||
|
public function getEmitter();
|
||
|
}
|