Development

- Enhanced regular expression used for matching parameters.
- Added basic unit-tests for parameters.
- Fixed typos in PHP-docs and other minor optimizations.
This commit is contained in:
Simon Sessingø
2016-06-04 18:20:46 +02:00
parent 6780b24e59
commit 53e5b5362f
5 changed files with 56 additions and 28 deletions
+5
View File
@@ -6,4 +6,9 @@ class DummyController {
echo static::class . '@' .'start() OK';
}
public function param($params = null) {
$params = func_get_args();
echo 'Params: ' . join(', ', $params);
}
}