Skip to content

Commit 8d46be7

Browse files
committed
added SmsOptions helper
1 parent b61660a commit 8d46be7

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

src/SmsOptions.php

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?php
2+
3+
namespace Sms77\Api;
4+
5+
abstract class SmsOptions
6+
{
7+
const Debug = 'debug';
8+
const Delay = 'delay';
9+
const Details = 'details';
10+
const Flash = 'flash';
11+
const ForeignId = 'foreign_id';
12+
const From = 'from';
13+
const Json = 'json';
14+
const Label = 'label';
15+
const NoReload = 'no_reload';
16+
const PerformanceTracking = 'performance_tracking';
17+
const ReturnMsgId = 'return_msg_id';
18+
const Text = 'text';
19+
const To = 'to';
20+
const Ttl = 'ttl';
21+
const Udh = 'udh';
22+
const Unicode = 'unicode';
23+
const Utf8 = 'utf8';
24+
}

0 commit comments

Comments
 (0)