1 | <?php |
||
7 | class SmsapiSmsMessage extends SmsapiMessage |
||
8 | { |
||
9 | /** |
||
10 | * @param string|null $content |
||
11 | */ |
||
12 | 83 | public function __construct($content = null) |
|
19 | |||
20 | /** |
||
21 | * @param string $content |
||
22 | * @return self |
||
23 | */ |
||
24 | 5 | public function content($content) |
|
31 | |||
32 | /** |
||
33 | * @param string $template |
||
34 | * @return self |
||
35 | */ |
||
36 | 5 | public function template($template) |
|
43 | |||
44 | /** |
||
45 | * @param string $from |
||
46 | * @return self |
||
47 | */ |
||
48 | 5 | public function from($from) |
|
55 | |||
56 | /** |
||
57 | * @param bool $fast |
||
58 | * @return self |
||
59 | */ |
||
60 | 6 | public function fast($fast) |
|
67 | |||
68 | /** |
||
69 | * @param bool $flash |
||
70 | * @return self |
||
71 | */ |
||
72 | 6 | public function flash($flash) |
|
79 | |||
80 | /** |
||
81 | * @param string $encoding |
||
82 | * @return self |
||
83 | */ |
||
84 | 5 | public function encoding($encoding) |
|
91 | |||
92 | /** |
||
93 | * @param bool $normalize |
||
94 | * @return self |
||
95 | */ |
||
96 | 6 | public function normalize($normalize) |
|
103 | |||
104 | /** |
||
105 | * @param bool $nounicode |
||
106 | * @return self |
||
107 | */ |
||
108 | 6 | public function nounicode($nounicode) |
|
115 | |||
116 | /** |
||
117 | * @param bool $single |
||
118 | * @return self |
||
119 | */ |
||
120 | 6 | public function single($single) |
|
127 | } |
||
128 |