for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace carono\turbotext;
abstract class RequestAbstract
{
protected $_client;
/**
* RequestAbstract constructor.
*
* @param Client|ClientAbstract $client
*/
public function __construct($client)
$this->_client = $client;
}
* @return Client
public function getClient()
return $this->_client;