1
0
This repository has been archived on 2017-06-06. You can view files and clone it, but cannot push or open issues or pull requests.
Files
informaticaD4P-2017/src/Application/Daniel.php
JelmerHinssen 6026905ad0 Kleine letter
Op sgni deed hij het niet omdat 'Daniel.phtml' 'daniel.phtml' moest
zijn.
2017-03-28 22:24:23 +02:00

29 lines
518 B
PHP

<?php
/**
* Informatica Eindproject D4p
* 6in3, Stedelijk Gymnasium Nijmegen
* Docent: Hans de Wolf
*
* ==================
*
* Daniel Boutros,
* Christiaan Goossens,
* Jelmer Hinssen
*/
namespace Inforbank\Application;
use \Slim\App;
class Daniel
{
public function __construct(App $app)
{
$app->get('/daniel', function ($request, $response, $args) {
// Render index view
return $this->renderer->render($response, 'daniel.phtml', $args);
});
}
}