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