<?php
/**
* Copyright(C) 2015 Markus Bröker<broeker.markus@googlemail.com>
*
*/
namespace bfw\mvc\controller;
use bfw\core\Controller;
/**
* Class DokumentationController
* @package bfw\mvc\controller
*/
class DokumentationController extends Controller {
public function __construct() {
parent::__construct();
}
public function index() {
$request = $this->getRequest();
$view = $this->getView();
$model = $this->getModel();
$this->getView()->display();
}
}