oont-contents/plugins/woocommerce-pdf-invoices-packing-slips/ubl/Collections/OrderCollection.php
2025-02-10 13:57:45 +01:00

15 lines
236 B
PHP

<?php
namespace WPO\IPS\UBL\Collections;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
class OrderCollection extends Collection {
public function add_order( Order $order ) {
$this->items[] = $order;
}
}