mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim.git
synced 2026-08-19 04:24:00 +00:00
13 lines
186 B
PHP
Executable File
13 lines
186 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Classes\Interfaces\Order\Steps;
|
|
|
|
interface OrderStep
|
|
{
|
|
public function isPrimary();
|
|
|
|
public function getReferenceId();
|
|
|
|
public function getSequence();
|
|
|
|
} |