mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 09:48:40 +00:00
34 lines
701 B
PHP
34 lines
701 B
PHP
<?php
|
|
/**
|
|
* Jingga
|
|
*
|
|
* PHP Version 8.1
|
|
*
|
|
* @package phpOMS\Api\Shipping\Fedex
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 2.0
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace phpOMS\Api\Shipping\Fedex;
|
|
|
|
use phpOMS\Api\Shipping\ShippingInterface;
|
|
use phpOMS\Message\Http\HttpRequest;
|
|
use phpOMS\Message\Http\RequestMethod;
|
|
use phpOMS\Message\Http\Rest;
|
|
use phpOMS\Uri\HttpUri;
|
|
|
|
/**
|
|
* Shipment api.
|
|
*
|
|
* @package phpOMS\Api\Shipping\Fedex
|
|
* @license OMS License 2.0
|
|
* @link https://jingga.app
|
|
* @see https://developer.fedex.com/api/en-us/home.html
|
|
* @since 1.0.0
|
|
*/
|
|
final class FedexShipping implements ShippingInterface
|
|
{
|
|
} |