From 77eb8dd1a8700f027e7be87f69d0582174f70ea0 Mon Sep 17 00:00:00 2001 From: Ro Date: Mon, 19 Sep 2022 21:43:57 -0700 Subject: [PATCH] HTTP Method notes for RouteControl Currently only two http methods are being utilized for route traffic so classes are getting jumped trying to stuff every action in on or the other. More methods need to be implemented to better organize route pathing and subsequent requests --- brain/controller/RouteControl.php | 1 + 1 file changed, 1 insertion(+) diff --git a/brain/controller/RouteControl.php b/brain/controller/RouteControl.php index 2fbc068..ab75386 100644 --- a/brain/controller/RouteControl.php +++ b/brain/controller/RouteControl.php @@ -7,6 +7,7 @@ use Psr\Http\Message\ServerRequestInterface; class RouteControl { + //TODO: Add additional HTTP Methods to better organize API control paths public function get( ServerRequestInterface $request, ResponseInterface $response,