mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/shipping-portal.git
synced 2026-08-19 04:24:12 +00:00
14 lines
172 B
PHP
14 lines
172 B
PHP
<?php
|
|
|
|
namespace App\Classes\General\Interfaces;
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Relations\MorphMany;
|
|
|
|
interface Steppable
|
|
{
|
|
|
|
public function steps(): morphMany;
|
|
|
|
}
|