for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Facile\SentryModule\Service;
trait ClientAwareTrait
{
/**
* @var Client
*/
protected $client;
* @return Client
public function getClient()
return $this->client;
}
* @param Client $client
* @return $this
public function setClient(Client $client)
$this->client = $client;
return $this;