Files
simple-php-router/test/Dummy/DummyController.php
Simon Sessingø fc4fd0edf1 [FEATURE] Added ExceptionHandling functionality + tests.
- Somehow the ExceptionHandling functionality never really get implemented and/or got lost in translation, it's back whup!
- Added some basic tests for Middleware + routing.
2016-04-09 07:05:49 +02:00

9 lines
118 B
PHP

<?php
class DummyController {
public function start() {
echo static::class . '@' .'start() OK';
}
}