mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-26 00:28:04 +08: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();
|
|
}
|