1 | <?php |
||
22 | class Messenger |
||
23 | { |
||
24 | public const API_URL = 'https://graph.facebook.com/'; |
||
25 | public const API_VERSION = 'v5.0'; |
||
26 | |||
27 | /** |
||
28 | * @var string |
||
29 | */ |
||
30 | protected $appSecret; |
||
31 | |||
32 | /** |
||
33 | * @var string |
||
34 | */ |
||
35 | protected $verifyToken; |
||
36 | |||
37 | /** |
||
38 | * @var string |
||
39 | */ |
||
40 | protected $pageToken; |
||
41 | |||
42 | /** |
||
43 | * @var \GuzzleHttp\ClientInterface |
||
44 | */ |
||
45 | protected $client; |
||
46 | |||
47 | /** |
||
48 | * Messenger constructor. |
||
49 | */ |
||
50 | 1 | public function __construct( |
|
68 | |||
69 | 1 | public function send(): Send |
|
73 | |||
74 | 1 | public function webhook(?ServerRequestInterface $request = null): Webhook |
|
78 | |||
79 | 1 | public function user(): User |
|
83 | |||
84 | 1 | public function profile(): Profile |
|
88 | |||
89 | 1 | public function code(): Code |
|
93 | |||
94 | 1 | public function insights(): Insights |
|
98 | |||
99 | 1 | public function tag(): Tag |
|
103 | |||
104 | 1 | public function thread(): Thread |
|
108 | |||
109 | 1 | public function nlp(): Nlp |
|
113 | |||
114 | 1 | public function broadcast(): Broadcast |
|
118 | |||
119 | 1 | public function persona(): Persona |
|
123 | } |
||
124 |
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.