Much Better Now
This commit is contained in:
16
app/core/Response.php
Normal file
16
app/core/Response.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
class Response {
|
||||
private $_anvil;
|
||||
|
||||
public function __construct($a) {
|
||||
$this->_anvil = $a;
|
||||
}
|
||||
|
||||
public function redirect($url) {
|
||||
header('Location: '.$url);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
?>
|
Reference in New Issue
Block a user