mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 17:58:41 +00:00
31 lines
552 B
PHP
31 lines
552 B
PHP
<?php
|
|
/**
|
|
* Jingga
|
|
*
|
|
* PHP Version 8.1
|
|
*
|
|
* @package phpOMS\Api\Shipping\Usps
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 2.0
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace phpOMS\Api\Shipping\Usps;
|
|
|
|
use phpOMS\Api\Shipping\ShippingInterface;
|
|
|
|
/**
|
|
* Shipment api.
|
|
*
|
|
* @package phpOMS\Api\Shipping\Usps
|
|
* @license OMS License 2.0
|
|
* @link https://jingga.app
|
|
* @see https://developer.usps.com/apis
|
|
* @since 1.0.0
|
|
*/
|
|
final class UspsShipping implements ShippingInterface
|
|
{
|
|
}
|