univ-pau-ics/build/router/controller/redirect.php

35 lines
312 B
PHP
Raw Permalink Normal View History

<?php
namespace router\controller;
class redirect{
/* PRE-CALL
*
* @url<String> Calling URI
*
*/
public function __construct($url){
}
/* CALL
*
*/
public function homepage(){
header('Location: /');
}
/* POST-CALL
*
*/
public function __destruct(){
}
}