atmonshi/sender

View on GitHub
src/repositories/mobilyWs.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace atmonshi\sender\repositories;

class mobilyWs
{
    public function getBalance($resultType = 0)
    {
        include(__DIR__ . "/../mobilyWs/includeSettings.php");
        $mobile   = config('sender.mobileWs.username');
        $password = config('sender.mobileWs.password');
        $balcanc  = balanceSMS($mobile, $password, $resultType);

        return $balcanc;
    }

    public function getSenderNames()
    {
        return "Not available in mobilyWs";
    }
}