mirror of
https://github.com/skipperbent/simple-php-router.git
synced 2026-06-16 18:50:11 +03:00
- 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.
9 lines
118 B
PHP
9 lines
118 B
PHP
<?php
|
|
|
|
class DummyController {
|
|
|
|
public function start() {
|
|
echo static::class . '@' .'start() OK';
|
|
}
|
|
|
|
} |