Postmark\PostmarkClientBase::getClient PHP Метод

getClient() защищенный Метод

Return the injected GuzzleHttp\Client or create a default instance
protected getClient ( ) : Client
Результат GuzzleHttp\Client
    protected function getClient()
    {
        if (!$this->client) {
            $this->client = new Client(['base_uri' => self::$BASE_URL, RequestOptions::VERIFY => self::$VERIFY_SSL, RequestOptions::TIMEOUT => $this->timeout]);
        }
        return $this->client;
    }