oont-contents/plugins/woocommerce-pdf-invoices-packing-slips/ubl/Collections/OrderCollection.php
2025-02-08 15:10:23 +01:00

15 lines
235 B
PHP

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