Files
izyim/app/Classes/Interfaces/Document.php
T
2019-01-23 23:53:20 +08:00

12 lines
174 B
PHP

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