| 1 | <?php |
||
| 10 | class SmsIntel |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @param $login |
||
| 14 | * @param $password |
||
| 15 | * @return RequestsContainer |
||
| 16 | * @throws AuthenticationFailed |
||
| 17 | */ |
||
| 18 | public static function create($login, $password) |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @param string $login |
||
| 31 | * @param string $password |
||
| 32 | * @throws AuthenticationFailed |
||
| 33 | */ |
||
| 34 | protected static function checkCredentials($login, $password) |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @codeCoverageIgnore |
||
| 43 | */ |
||
| 44 | private function __construct(){} |
||
| 45 | |||
| 46 | /** |
||
| 47 | * @codeCoverageIgnore |
||
| 48 | */ |
||
| 49 | private function __clone(){} |
||
| 50 | } |
||
| 51 |