DIGITALYA INC.
Ville-Marie
* @since 2014-07-01
* @copyright 2014 Weebly, Inc
*/
require_once( __DIR__ . '/Bootstrap.php' );
define("MEMORY_LIMIT", 1048576);
class Handler
{
/**
* @var $request
*/
private $request = NULL;
/**
* @var $site
*/
private $site = NULL;
/**
* @var boolean
*/
private $isRedirect = false;
/**
* Constructor
* On construct, Handler runs through everything needed to either render the requested page, or render a 404
* No methods are called outside of this class, and no...