13 lines
192 B
PHP
13 lines
192 B
PHP
<?php
|
|
|
|
namespace WPO\IPS\UBL\Repositories\Contracts;
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Exit if accessed directly
|
|
}
|
|
|
|
interface OrderRepository {
|
|
|
|
public function get_by_id( $id );
|
|
|
|
}
|