15 lines
236 B
PHP
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;
|
|
}
|
|
|
|
}
|