-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Labels
Description
Hi @alhoqbani ,
Thanks for your great job!
I have some suggestions to refactoring your package if you allow to me!
In MobilyWsApi.php file you hard coded the messages and it should be called from lang/filename.php file that will help you to make your package much easier for improvements.
class MobilyWsApi
{
.
.
.
protected function msgSendResponse($code)
{
$arraySendMsg = [];
// Current way .. before refactoring
$arraySendMsg[0] = 'لم يتم الاتصال بالخادم';
// After refactoring
// $arraySendMsg[0] = __('filename.disconnected'); and so on ...
.
.
.
}
}Best regards M. Saud 🤠
Reactions are currently unavailable