-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
65 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. | ||
} | ||
} |