mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-01-24 12:51:05 +01:00
15 lines
220 B
PHP
Executable File
15 lines
220 B
PHP
Executable File
<?php
|
|
|
|
namespace Common;
|
|
|
|
interface ReferenceInterface
|
|
{
|
|
public function getReferenceName();
|
|
|
|
public function getReferenceNumber();
|
|
|
|
public function getReferenceDate();
|
|
|
|
public function getReference();
|
|
}
|