Files
izyim/app/Classes/Interfaces/Document.php
omair saleh 8a28eb1790 Revert "Merge branch 'dashboardReport' into 'master'"
This reverts merge request !5
2019-03-19 09:57:38 +00:00

12 lines
174 B
PHP

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