13 lines
212 B
PHP
13 lines
212 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Modules\Shared\Contracts;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Base Service Interface
|
||
|
|
* 所有模組的 Service 都應繼承此介面 (若有通用方法)
|
||
|
|
*/
|
||
|
|
interface ServiceInterface
|
||
|
|
{
|
||
|
|
// Future common methods
|
||
|
|
}
|