classes/bfw/mvc/controller/DokumentationController.php
author Markus Broeker<broeker.markus@googlemail.com>
Sun, 14 Feb 2016 19:01:17 +0100
changeset 42 015d3f02d4e8
parent 39 8b4f9c6136f4
permissions -rw-r--r--
Startseite mit Video

<?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();
    }

}