1 | <?php |
||
24 | class SmsMessageCallbackEvent extends Event |
||
|
|||
25 | { |
||
26 | /** @var CallbackRequest */ |
||
27 | private $callbackRequest; |
||
28 | |||
29 | /** |
||
30 | * @param CallbackRequest $callbackRequest |
||
31 | */ |
||
32 | public function __construct(CallbackRequest $callbackRequest) |
||
36 | |||
37 | /** |
||
38 | * @return string |
||
39 | */ |
||
40 | public function getEvent(): string |
||
44 | |||
45 | /** |
||
46 | * @return Identity |
||
47 | */ |
||
48 | public function getTo(): Identity |
||
52 | |||
53 | /** |
||
54 | * @return Identity |
||
55 | */ |
||
56 | public function getFrom(): Identity |
||
60 | |||
61 | /** |
||
62 | * @return string |
||
63 | */ |
||
64 | public function getMessage(): string |
||
68 | |||
69 | /** |
||
70 | * @return \DateTime |
||
71 | */ |
||
72 | public function getTimestamp(): \DateTime |
||
76 | |||
77 | /** |
||
78 | * @return int |
||
79 | */ |
||
80 | public function getVersion(): int |
||
84 | } |
||
85 |
This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.