for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Metfan\RabbitSetup\Manager\RabbitMq;
use Metfan\RabbitSetup\Http\ClientInterface;
/**
* Simple trait implentation of ClientAwareInterface
*
* @author Ulrich
* @package Metfan\RabbitSetup\Manager\RabbitMq
*/
trait ClientAwareTrait
{
* @var ClientInterface
protected $client;
* @param ClientInterface $client
* @return $this
public function setClient(ClientInterface $client)
$this->client = $client;
return $this;
}