mirror of
https://github.com/SuiteCRM/SuiteCRM-Core.git
synced 2025-08-29 04:47:10 +08:00
21 lines
294 B
PHP
21 lines
294 B
PHP
|
<?php
|
||
|
|
||
|
namespace SuiteCRM\Core\Base\Module;
|
||
|
|
||
|
/**
|
||
|
* Interface ModuleInterface
|
||
|
* @package SuiteCRM\Core\Base\Module
|
||
|
*/
|
||
|
interface ModuleInterface
|
||
|
{
|
||
|
/**
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public function getName();
|
||
|
|
||
|
/**
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public function getDescription();
|
||
|
}
|