for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Greenlyst\BaseCommerce\Traits;
use Greenlyst\BaseCommerce\Client;
trait HasClient
{
/**
* @var Client
*/
private $client;
* @param $client
public function setClient($client)
$this->client = $client;
}