mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 09:48:40 +00:00
32 lines
658 B
PHP
32 lines
658 B
PHP
<?php
|
|
/**
|
|
* Jingga
|
|
*
|
|
* PHP Version 8.1
|
|
*
|
|
* @package phpOMS\Api\Shipping\DPD
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 2.0
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace phpOMS\Api\Shipping\DPD;
|
|
|
|
use phpOMS\Api\Shipping\ShippingInterface;
|
|
|
|
/**
|
|
* Shipment api.
|
|
*
|
|
* @package phpOMS\Api\Shipping\DPD
|
|
* @license OMS License 2.0
|
|
* @link https://jingga.app
|
|
* @see https://api.dpd.ro/web-api.html#href-create-shipment-req
|
|
* @see https://www.dpd.com/de/en/entwickler-integration-in-ihre-versandloesung/
|
|
* @since 1.0.0
|
|
*/
|
|
final class DPDShipping implements ShippingInterface
|
|
{
|
|
}
|