1<?php
2namespace GuzzleHttp\Event;
3
4/**
5 * Holds an event emitter
6 */
7interface HasEmitterInterface
8{
9    /**
10     * Get the event emitter of the object
11     *
12     * @return EmitterInterface
13     */
14    public function getEmitter();
15}
16