Skip to content

Commit

Permalink
add 速递管家
Browse files Browse the repository at this point in the history
  • Loading branch information
icowan committed Apr 25, 2021
1 parent 956f08f commit 388f520
Showing 1 changed file with 65 additions and 0 deletions.
65 changes: 65 additions & 0 deletions src/platforms/Rtb65Platform.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
<?php


namespace yiier\crossBorderExpress\platforms;


use GuzzleHttp\Client;
use nusoap_client;
use yiier\crossBorderExpress\contracts\Order;
use yiier\crossBorderExpress\contracts\OrderFee;
use yiier\crossBorderExpress\contracts\OrderResult;
use yiier\crossBorderExpress\contracts\Transport;
use yiier\crossBorderExpress\exceptions\ExpressException;

class Rtb65Platform extends Platform
{

/**
* @inheritDoc
*/
public function getClient()
{
// TODO: Implement getClient() method.
}

/**
* @inheritDoc
*/
public function getTransportsByCountryCode(string $countryCode)
{
// TODO: Implement getTransportsByCountryCode() method.
}

/**
* @inheritDoc
*/
public function createOrder(Order $order): OrderResult
{
// TODO: Implement createOrder() method.
}

/**
* @inheritDoc
*/
public function getPrintUrl(string $orderNumber, array $params = []): string
{
// TODO: Implement getPrintUrl() method.
}

/**
* @inheritDoc
*/
public function getOrderFee(string $orderNumber): OrderFee
{
// TODO: Implement getOrderFee() method.
}

/**
* @inheritDoc
*/
public function getOrderAllFee(array $query = []): array
{
// TODO: Implement getOrderAllFee() method.
}
}

0 comments on commit 388f520

Please sign in to comment.