You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ShippingRates/src/RateRequest/Adapter.php

11 lines
238 B
PHP

<?php
namespace pdt256\Shipping\RateRequest;
abstract class Adapter
{
protected $curlConnectTimeoutInMilliseconds = 1000;
protected $curlDownloadTimeoutInSeconds = 11;
abstract public function execute($url, $data = null);
}