Hypernode\Magento\Command\AbstractHypernodeCommand::getCurl PHP Method

getCurl() public method

Get curl class
public getCurl ( ) : Curl
return Hypernode\Curl
    public function getCurl()
    {
        if (null === $this->_curl) {
            $this->_curl = new Curl();
        }
        return $this->_curl;
    }
AbstractHypernodeCommand