phpci/PHPCI/Application.php

16 lines
245 B
PHP
Raw Normal View History

2013-05-03 17:02:53 +02:00
<?php
namespace PHPCI;
use b8,
b8\Registry;
class Application extends b8\Application
{
public function handleRequest()
{
$view = new b8\View('Layout');
$view->content = parent::handleRequest();
return $view->render();
}
}