Files
izyim/app/Classes/Interfaces/Document.php
T
2019-03-19 17:11:21 +08:00

12 lines
174 B
PHP
Executable File

<?php
namespace App\Classes\Interfaces;
interface Document
{
public function getType();
public function getReferenceId();
public function getDocumentType();
}