7 lines
166 B
PHP
7 lines
166 B
PHP
|
|
<?php
|
||
|
|
namespace CSY2028;
|
||
|
|
interface Routes {
|
||
|
|
public function getController($name);
|
||
|
|
public function getDefaultRoute();
|
||
|
|
public function checkLogin($route);
|
||
|
|
}
|