2023-01-21 23:12:42 +00:00
|
|
|
<?php
|
|
|
|
|
namespace CSY2028;
|
|
|
|
|
interface Routes {
|
2023-01-25 13:22:20 +00:00
|
|
|
public function getController($controllerName, $functionName);
|
2023-01-21 23:12:42 +00:00
|
|
|
public function getDefaultRoute();
|
|
|
|
|
public function checkLogin($route);
|
2023-01-25 17:14:23 +00:00
|
|
|
}
|
|
|
|
|
?>
|