X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fclasses%2Finterfaces%2Flogin%2Fclass_LoginableUser.php;fp=inc%2Fclasses%2Finterfaces%2Flogin%2Fclass_LoginableUser.php;h=107b13387ce19f8f730b80f5a4fa7fa68575af63;hb=0e9b4c76519b80ed1369936f56a68cea65aff56d;hp=c7abf2d8d05004c86668f487103db3336b2daf7e;hpb=42bc0e1fc5ae4653fe04c9d41474c874a0050b69;p=mailer.git diff --git a/inc/classes/interfaces/login/class_LoginableUser.php b/inc/classes/interfaces/login/class_LoginableUser.php index c7abf2d8d0..107b13387c 100644 --- a/inc/classes/interfaces/login/class_LoginableUser.php +++ b/inc/classes/interfaces/login/class_LoginableUser.php @@ -2,11 +2,11 @@ /** * An interface for user login classes * - * @author Roland Haeder + * @author Roland Haeder * @version 0.0.0 * @copyright Copyright(c) 2007, 2008 Roland Haeder, this is free software * @license GNU GPL 3.0 or any newer version - * @link http://www.ship-simu.org + * @link http://www.ship-simu.org * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -28,9 +28,10 @@ interface LoginableUser extends FrameworkInterface { * in a boolean attribute which is then readable by a matching getter. * * @param $requestInstance An instance of a Requestable class + * @param $responseInstance An instance of a Responseable class * @return void */ - function doLogin (Requestable $requestInstance); + function doLogin (Requestable $requestInstance, Responseable $responseInstance); } //