mirror of
https://gitlab.com/omair-personal/izyim.git
synced 2026-08-19 04:14:05 +00:00
15 lines
220 B
PHP
Executable File
15 lines
220 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Classes\Interfaces\Steps;
|
|
|
|
interface Step
|
|
{
|
|
public function getReferenceId();
|
|
|
|
public function getInitialName();
|
|
|
|
public function getFinalName();
|
|
|
|
public function getDescription();
|
|
|
|
} |