Development

- Fixed: `RouteController` not matching certain urls.
- Made `RouteResource` more strict in url-matching.
- Added PHPUnit `RouterControllerTest` class.
- Fixed merged `testSimularUrls` method in `RouterUrlTest`.
This commit is contained in:
Simon Sessingø
2017-03-06 02:53:44 +01:00
parent db024b9588
commit 0a58d36606
5 changed files with 65 additions and 10 deletions
+15
View File
@@ -17,4 +17,19 @@ class DummyController
echo join(', ', func_get_args());
}
public function getTest()
{
echo 'getTest';
}
public function postTest()
{
echo 'postTest';
}
public function putTest()
{
echo 'putTest';
}
}