public function getClient()

in src/TransportBuilder.php [57:67]


    public function getClient(): ClientInterface
    {
        if (empty($this->client)) {
            try {
                $this->client = Psr18ClientDiscovery::find();
            } catch (NotFoundException $e) {
                $this->client = new Curl();
            }
        }
        return $this->client;
    }