Much Better Now

This commit is contained in:
2014-08-19 09:10:22 -05:00
parent d6e8a4ccd4
commit 3a2fa4f95e
13 changed files with 909 additions and 59 deletions

16
app/core/Response.php Normal file
View File

@@ -0,0 +1,16 @@
<?php
class Response {
private $_anvil;
public function __construct($a) {
$this->_anvil = $a;
}
public function redirect($url) {
header('Location: '.$url);
}
}
?>