Current path: home/webdevt/prestashop17/vendor/guzzlehttp/guzzle/src/Event/
?? Go up: /home/webdevt/prestashop17/vendor/guzzlehttp/guzzle/src
<?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;
}
}