Your IP : 13.58.209.201


Current Path : /proc/self/root/home/sudancam/.trash/shop/storage/vendor/guzzlehttp/guzzle/src/Event/
Upload File :
Current File : //proc/self/root/home/sudancam/.trash/shop/storage/vendor/guzzlehttp/guzzle/src/Event/HasEmitterTrait.php

<?php
namespace GuzzleHttp\Event;

/**
 * Trait that implements the methods of HasEmitterInterface
 */
trait HasEmitterTrait
{
    /** @var EmitterInterface */
    private $emitter;

    public function getEmitter()
    {
        if (!$this->emitter) {
            $this->emitter = new Emitter();
        }

        return $this->emitter;
    }
}