From c3662cd185d639f11437778f3c991d3a4838e35d Mon Sep 17 00:00:00 2001 From: Korina Cordero Date: Thu, 30 Jan 2020 08:53:56 +0000 Subject: [PATCH] Add login to interface. #311 --- src/Service/RiderAPIHandlerInterface.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Service/RiderAPIHandlerInterface.php b/src/Service/RiderAPIHandlerInterface.php index c3ff85c0..df5c6915 100644 --- a/src/Service/RiderAPIHandlerInterface.php +++ b/src/Service/RiderAPIHandlerInterface.php @@ -7,4 +7,6 @@ use Symfony\Component\HttpFoundation\Request; interface RiderAPIHandlerInterface { public function register(Request $req); + + public function login(Request $req); }