snappymail/rainloop/v/0.0.0/app/libraries/GuzzleHttp/Event/HasEmitterInterface.php

17 lines
236 B
PHP
Raw Normal View History

<?php
namespace GuzzleHttp\Event;
/**
* Holds an event emitter
*/
interface HasEmitterInterface
{
/**
* Get the event emitter of the object
*
* @return EmitterInterface
*/
public function getEmitter();
}