File "GuzzleHelperAbstract.php"

Full Path: /home/cananyalcin/public_html/core/module/client/library/coinbase_api/coinbase/coinbase-commerce/tests/GuzzleClientMock/GuzzleHelperAbstract.php
File size: 333 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace CoinbaseCommerce\Tests\GuzzleClientMock;

abstract class GuzzleHelperAbstract
{
    protected $client;

    abstract public function appendRequest($statusCode, $body, $headers = []);

    abstract public function shiftTransactionRequest();

    public function getClient()
    {
        return $this->client;
    }
}