| 1 | <?php |
||
| 7 | class MessageApi |
||
| 8 | { |
||
| 9 | use ResponseHandler; |
||
| 10 | |||
| 11 | /** |
||
| 12 | * @var Client |
||
| 13 | */ |
||
| 14 | private $client; |
||
| 15 | |||
| 16 | 5 | public function __construct(Client $client) |
|
| 20 | |||
| 21 | /** |
||
| 22 | * @param string $text |
||
| 23 | * @param Context|null $context |
||
| 24 | * @param array $extraParams |
||
| 25 | * |
||
| 26 | * @return mixed |
||
| 27 | */ |
||
| 28 | 2 | public function extractMeaning($text, Context $context = null, array $extraParams = []) |
|
| 42 | } |
||
| 43 |