mirror of
https://github.com/SuiteCRM/SuiteCRM-Core.git
synced 2025-08-29 01:10:42 +08:00
15 lines
259 B
PHP
15 lines
259 B
PHP
<?php
|
|
|
|
namespace SuiteCRM\Core\Base\Route;
|
|
|
|
use SuiteCRM\Core\Base\Helper\Input;
|
|
use SuiteCRM\Core\Base\Config\ConfigManager;
|
|
|
|
/**
|
|
* Interface RouterInterface
|
|
* @package SuiteCRM\Core\Base\Route
|
|
*/
|
|
interface RouterInterface
|
|
{
|
|
public function load();
|
|
}
|