| 1 |
<?php declare(strict_types=1); |
| 2 |
|
| 3 |
namespace MyParcelNL\Sdk\src\Model; |
| 4 |
|
| 5 |
/** |
| 6 |
* @deprecated Use \MyParcelNL\Sdk\src\Model\Consignment\PostNLConsignment instead |
| 7 |
*/ |
| 8 |
class MyParcelConsignment |
| 9 |
{ |
| 10 |
/** @noinspection PhpMissingParentConstructorInspection */ |
| 11 |
public function __construct() |
| 12 |
{ |
| 13 |
throw new \BadMethodCallException('The class MyParcelConsignment is deprecated use PostNLConsignment, BpostConsignment or DPDConsignment instead.'); |
| 14 |
} |
| 15 |
} |