mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-10 15:08:28 +03:00
16 lines
236 B
PHP
16 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();
|
|
}
|