mirror of
https://gitlab.com/omair-personal/izyim.git
synced 2026-08-19 04:14:05 +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();
|
|
|
|
} |