add("mdref", ROOT); use http\Controller; use http\Controller\Url; use http\Controller\Observer\Layout; use mdref\ExceptionHandler; use mdref\Action; new ExceptionHandler; $ctl = new Controller; $ctl->setDependency("baseUrl", new Url) ->attach(new Action) ->attach(new Layout) ->notify() ->getResponse() ->send();