-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathSmsapiPlService.php
More file actions
45 lines (31 loc) · 1.18 KB
/
Copy pathSmsapiPlService.php
File metadata and controls
45 lines (31 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?php
declare(strict_types=1);
namespace Smsapi\Client\Service;
use Smsapi\Client\Feature\Blacklist\BlacklistFeature;
use Smsapi\Client\Feature\Contacts\ContactsFeature;
use Smsapi\Client\Feature\Hlr\HlrFeature;
use Smsapi\Client\Feature\Mms\MmsFeature;
use Smsapi\Client\Feature\Ping\PingFeature;
use Smsapi\Client\Feature\Profile\SmsapiPlProfileFeature;
use Smsapi\Client\Feature\ShortUrl\ShortUrlFeature;
use Smsapi\Client\Feature\Mfa\MfaFeature;
use Smsapi\Client\Feature\Sms\SmsFeature;
use Smsapi\Client\Feature\Subusers\SubusersFeature;
use Smsapi\Client\Feature\Vms\VmsFeature;
/**
* @api
*/
interface SmsapiPlService
{
public function pingFeature(): PingFeature;
public function smsFeature(): SmsFeature;
public function mfaFeature(): MfaFeature;
public function hlrFeature(): HlrFeature;
public function subusersFeature(): SubusersFeature;
public function profileFeature(): SmsapiPlProfileFeature;
public function shortUrlFeature(): ShortUrlFeature;
public function contactsFeature(): ContactsFeature;
public function mmsFeature(): MmsFeature;
public function vmsFeature(): VmsFeature;
public function blacklistFeature(): BlacklistFeature;
}