mirror of
https://github.com/SuiteCRM/SuiteCRM-Core.git
synced 2025-08-29 01:10:42 +08:00
20 lines
294 B
PHP
20 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();
|
|
}
|