| 1 | <?php |
||
| 5 | class ClickatellMessage |
||
| 6 | { |
||
| 7 | /** @var string */ |
||
| 8 | public $content; |
||
| 9 | |||
| 10 | /** |
||
| 11 | * @param string $content |
||
| 12 | * |
||
| 13 | * @return static |
||
| 14 | */ |
||
| 15 | 2 | public static function create($content = '') |
|
| 19 | |||
| 20 | /** |
||
| 21 | * @param string $content |
||
| 22 | */ |
||
| 23 | 3 | public function __construct($content = '') |
|
| 27 | |||
| 28 | /** |
||
| 29 | * @param string $content |
||
| 30 | * |
||
| 31 | * @return $this |
||
| 32 | */ |
||
| 33 | 1 | public function content($content) |
|
| 39 | |||
| 40 | /** |
||
| 41 | * @return string |
||
| 42 | */ |
||
| 43 | 2 | public function getContent() |
|
| 47 | } |
||
| 48 |