CSY2028-assignment-2/CSY2028/Routes.php

8 lines
194 B
PHP
Raw Normal View History

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
}
?>