| Total Complexity | 5 |
| Total Lines | 34 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 28 | class DeliveryPaymentHandler extends OledrionPersistableObjectHandler |
||
| 29 | { |
||
| 30 | /** |
||
| 31 | * DeliveryPaymentHandler constructor. |
||
| 32 | * @param \XoopsDatabase|null $db |
||
| 33 | */ |
||
| 34 | public function __construct(\XoopsDatabase $db = null) |
||
| 35 | { |
||
| 36 | // Table Classe Id |
||
| 37 | parent::__construct($db, 'oledrion_delivery_payment', DeliveryPayment::class, 'dp_id'); |
||
|
|
|||
| 38 | } |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @param $parameters |
||
| 42 | * @return array |
||
| 43 | */ |
||
| 44 | public function getDeliveryPaymantId($parameters) |
||
| 62 | } |
||
| 63 | } |
||
| 64 |