implement BinaryAgent for displaying binary data

This commit is contained in:
coderkun 2014-02-14 18:53:19 +01:00
commit 95527ef038
3 changed files with 79 additions and 0 deletions

View file

@ -0,0 +1,37 @@
<?php
/**
* The Legend of Z
*
* @author Oliver Hanraths <oliver.hanraths@uni-duesseldorf.de>
* @copyright 2014 Heinrich-Heine-Universität Düsseldorf
* @license http://www.gnu.org/licenses/gpl.html
* @link https://bitbucket.org/coderkun/the-legend-of-z
*/
namespace hhu\z\controllers;
/**
* Controller of the BinaryAgent to show binary data.
*
* @author Oliver Hanraths <oliver.hanraths@uni-duesseldorf.de>
*/
class BinaryController extends \hhu\z\controllers\ToplevelController
{
/**
* Action: index.
*
* Create binary data.
*/
public function index()
{
}
}
?>