?iť?

Your IP : 18.223.195.164


Current Path : /home/scgforma/www/cloud/3rdparty/guzzlehttp/guzzle/src/Event/
Upload File :
Current File : /home/scgforma/www/cloud/3rdparty/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;
    }
}