mirror of
https://github.com/danog/MadelineProto.git
synced 2024-11-27 00:34:40 +01:00
docufixes
This commit is contained in:
parent
3e0f512c92
commit
4d6365fc3d
@ -80,7 +80,7 @@ Call states (these constants are incrementing integers, thus can be compared lik
|
||||
|
||||
* `getState()` - Gets the controller state, as a VoIPController state constant
|
||||
* `getCallState()` - Gets the call state, as a call state constant
|
||||
* `getVisualization()` - Gets the visualization of the encryption key, as an array of emojis
|
||||
* `getVisualization()` - Gets the visualization of the encryption key, as an array of emojis, can be called only when the call state is bigger than or equal to `CALL_STATE_READY`. If called sooner, returns false.
|
||||
* `getStats()` Gets connection stats
|
||||
* `getOtherID()` - Gets the id of the other call participant, as a bot API ID
|
||||
* `getProtocol()` - Gets the protocol used by the current call, as a [PhoneCallProtocol](https://daniil.it/MadelineProto/API_docs/types/PhoneCallProtocol.html) object
|
||||
|
@ -80,7 +80,7 @@ Call states (these constants are incrementing integers, thus can be compared lik
|
||||
|
||||
* `getState()` - Gets the controller state, as a VoIPController state constant
|
||||
* `getCallState()` - Gets the call state, as a call state constant
|
||||
* `getVisualization()` - Gets the visualization of the encryption key, as an array of emojis
|
||||
* `getVisualization()` - Gets the visualization of the encryption key, as an array of emojis, can be called only when the call state is bigger than or equal to `CALL_STATE_READY`. If called sooner, returns false.
|
||||
* `getStats()` Gets connection stats
|
||||
* `getOtherID()` - Gets the id of the other call participant, as a bot API ID
|
||||
* `getProtocol()` - Gets the protocol used by the current call, as a [PhoneCallProtocol](https://daniil.it/MadelineProto/API_docs/types/PhoneCallProtocol.html) object
|
||||
|
@ -80,7 +80,7 @@ Call states (these constants are incrementing integers, thus can be compared lik
|
||||
|
||||
* `getState()` - Gets the controller state, as a VoIPController state constant
|
||||
* `getCallState()` - Gets the call state, as a call state constant
|
||||
* `getVisualization()` - Gets the visualization of the encryption key, as an array of emojis
|
||||
* `getVisualization()` - Gets the visualization of the encryption key, as an array of emojis, can be called only when the call state is bigger than or equal to `CALL_STATE_READY`. If called sooner, returns false.
|
||||
* `getStats()` Gets connection stats
|
||||
* `getOtherID()` - Gets the id of the other call participant, as a bot API ID
|
||||
* `getProtocol()` - Gets the protocol used by the current call, as a [PhoneCallProtocol](https://daniil.it/MadelineProto/API_docs/types/PhoneCallProtocol.html) object
|
||||
|
@ -80,7 +80,7 @@ Call states (these constants are incrementing integers, thus can be compared lik
|
||||
|
||||
* `getState()` - Gets the controller state, as a VoIPController state constant
|
||||
* `getCallState()` - Gets the call state, as a call state constant
|
||||
* `getVisualization()` - Gets the visualization of the encryption key, as an array of emojis
|
||||
* `getVisualization()` - Gets the visualization of the encryption key, as an array of emojis, can be called only when the call state is bigger than or equal to `CALL_STATE_READY`. If called sooner, returns false.
|
||||
* `getStats()` Gets connection stats
|
||||
* `getOtherID()` - Gets the id of the other call participant, as a bot API ID
|
||||
* `getProtocol()` - Gets the protocol used by the current call, as a [PhoneCallProtocol](https://daniil.it/MadelineProto/API_docs/types/PhoneCallProtocol.html) object
|
||||
|
@ -80,7 +80,7 @@ Call states (these constants are incrementing integers, thus can be compared lik
|
||||
|
||||
* `getState()` - Gets the controller state, as a VoIPController state constant
|
||||
* `getCallState()` - Gets the call state, as a call state constant
|
||||
* `getVisualization()` - Gets the visualization of the encryption key, as an array of emojis
|
||||
* `getVisualization()` - Gets the visualization of the encryption key, as an array of emojis, can be called only when the call state is bigger than or equal to `CALL_STATE_READY`. If called sooner, returns false.
|
||||
* `getStats()` Gets connection stats
|
||||
* `getOtherID()` - Gets the id of the other call participant, as a bot API ID
|
||||
* `getProtocol()` - Gets the protocol used by the current call, as a [PhoneCallProtocol](https://daniil.it/MadelineProto/API_docs/types/PhoneCallProtocol.html) object
|
||||
|
@ -751,7 +751,7 @@ Call states (these constants are incrementing integers, thus can be compared lik
|
||||
|
||||
* `getState()` - Gets the controller state, as a VoIPController state constant
|
||||
* `getCallState()` - Gets the call state, as a call state constant
|
||||
* `getVisualization()` - Gets the visualization of the encryption key, as an array of emojis
|
||||
* `getVisualization()` - Gets the visualization of the encryption key, as an array of emojis, can be called only when the call state is bigger than or equal to `CALL_STATE_READY`. If called sooner, returns false.
|
||||
* `getStats()` Gets connection stats
|
||||
* `getOtherID()` - Gets the id of the other call participant, as a bot API ID
|
||||
* `getProtocol()` - Gets the protocol used by the current call, as a [PhoneCallProtocol](https://daniil.it/MadelineProto/API_docs/types/PhoneCallProtocol.html) object
|
||||
|
@ -87,6 +87,10 @@ $m->import_authorization($MadelineProto->export_authorization());
|
||||
*/
|
||||
if (stripos(readline('Do you want to make a call? (y/n): '), 'y') !== false) {
|
||||
$controller = $MadelineProto->request_call(getenv('TEST_SECRET_CHAT'))->play('input.raw')->then('input.raw')->playOnHold(['input.raw'])->setOutputFile('output.raw');
|
||||
while ($controller->getCallState() < \danog\MadelineProto\VoIP::CALL_STATE_READY) {
|
||||
$MadelineProto->get_updates();
|
||||
}
|
||||
var_dump($controller->getVisualization());
|
||||
while ($controller->getCallState() < \danog\MadelineProto\VoIP::CALL_STATE_ENDED) {
|
||||
$MadelineProto->get_updates();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user