summaryrefslogtreecommitdiffstats
path: root/src/Controller.php
diff options
context:
space:
mode:
authorArnold Daniels <arnold@jasny.net>2016-11-18 18:28:24 +0100
committerArnold Daniels <arnold@jasny.net>2016-11-18 18:28:24 +0100
commit43c6d835943b322c036e9ee47800d694cb6bb5de (patch)
treef56809890b4e65c2f4790fbd8be9593a3538a72c /src/Controller.php
parent934b380f473b4e85e807f07d6bf516f4e227e112 (diff)
downloadcontroller-43c6d835943b322c036e9ee47800d694cb6bb5de.zip
controller-43c6d835943b322c036e9ee47800d694cb6bb5de.tar.gz
controller-43c6d835943b322c036e9ee47800d694cb6bb5de.tar.bz2
Refactored CheckRequest and CheckResponse traits
WIP Controller\Output Restructuring the tests (one test per trait)
Diffstat (limited to 'src/Controller.php')
-rw-r--r--src/Controller.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Controller.php b/src/Controller.php
index b3014f9..e928339 100644
--- a/src/Controller.php
+++ b/src/Controller.php
@@ -10,7 +10,8 @@ use Psr\Http\Message\ResponseInterface;
*/
abstract class Controller
{
- use Controller\Respond,
+ use Controller\Input,
+ Controller\Output,
Controller\CheckRequest,
Controller\CheckResponse;