This commit is contained in:
Daniil Gentili 2020-10-16 11:57:00 +02:00
parent 09e2082554
commit b02852ed3c
Signed by: danog
GPG Key ID: 8C1BE3B34B230CA7
62 changed files with 62 additions and 0 deletions

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\API: Main API wrapper for MadelineProto. title: danog\MadelineProto\API: Main API wrapper for MadelineProto.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\API` # `danog\MadelineProto\API`
[Back to index](../../index.md) [Back to index](../../index.md)

View File

@ -4,6 +4,7 @@ description: When a promise is yielded, execution of the generator is interrupte
value is sent into the generator, while a failure reason is thrown into the generator. Using a coroutine, value is sent into the generator, while a failure reason is thrown into the generator. Using a coroutine,
asynchronous code can be written without callbacks and be structured like synchronous code. asynchronous code can be written without callbacks and be structured like synchronous code.
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\Coroutine` # `danog\MadelineProto\Coroutine`
[Back to index](../../index.md) [Back to index](../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\Db\DbArray: DB array interface. title: danog\MadelineProto\Db\DbArray: DB array interface.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\Db\DbArray` # `danog\MadelineProto\Db\DbArray`
[Back to index](../../../index.md) [Back to index](../../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\Db\DbPropertiesFactory: This factory class initializes the correct database backend for MadelineProto. title: danog\MadelineProto\Db\DbPropertiesFactory: This factory class initializes the correct database backend for MadelineProto.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\Db\DbPropertiesFactory` # `danog\MadelineProto\Db\DbPropertiesFactory`
[Back to index](../../../index.md) [Back to index](../../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\Db\DbPropertiesTrait: Include this trait and call DbPropertiesTrait::initDb to use MadelineProto's database backend for properties. title: danog\MadelineProto\Db\DbPropertiesTrait: Include this trait and call DbPropertiesTrait::initDb to use MadelineProto's database backend for properties.
description: You will have to define a `$dbProperties` static array property, with a list of properties you want to store to a database. description: You will have to define a `$dbProperties` static array property, with a list of properties you want to store to a database.
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\Db\DbPropertiesTrait` # `danog\MadelineProto\Db\DbPropertiesTrait`
[Back to index](../../../index.md) [Back to index](../../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\Db\Driver\Mysql: MySQL driver wrapper. title: danog\MadelineProto\Db\Driver\Mysql: MySQL driver wrapper.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\Db\Driver\Mysql` # `danog\MadelineProto\Db\Driver\Mysql`
[Back to index](../../../../index.md) [Back to index](../../../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\Db\Driver\Postgres: Postgres driver wrapper. title: danog\MadelineProto\Db\Driver\Postgres: Postgres driver wrapper.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\Db\Driver\Postgres` # `danog\MadelineProto\Db\Driver\Postgres`
[Back to index](../../../../index.md) [Back to index](../../../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\Db\Driver\Redis: Redis driver wrapper. title: danog\MadelineProto\Db\Driver\Redis: Redis driver wrapper.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\Db\Driver\Redis` # `danog\MadelineProto\Db\Driver\Redis`
[Back to index](../../../../index.md) [Back to index](../../../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\Db\DriverArray: Array caching trait. title: danog\MadelineProto\Db\DriverArray: Array caching trait.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\Db\DriverArray` # `danog\MadelineProto\Db\DriverArray`
[Back to index](../../../index.md) [Back to index](../../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\Db\MemoryArray: Memory database backend. title: danog\MadelineProto\Db\MemoryArray: Memory database backend.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\Db\MemoryArray` # `danog\MadelineProto\Db\MemoryArray`
[Back to index](../../../index.md) [Back to index](../../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\Db\MysqlArray: MySQL database backend. title: danog\MadelineProto\Db\MysqlArray: MySQL database backend.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\Db\MysqlArray` # `danog\MadelineProto\Db\MysqlArray`
[Back to index](../../../index.md) [Back to index](../../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\Db\PostgresArray: Postgres database backend. title: danog\MadelineProto\Db\PostgresArray: Postgres database backend.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\Db\PostgresArray` # `danog\MadelineProto\Db\PostgresArray`
[Back to index](../../../index.md) [Back to index](../../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\Db\RedisArray: Redis database backend. title: danog\MadelineProto\Db\RedisArray: Redis database backend.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\Db\RedisArray` # `danog\MadelineProto\Db\RedisArray`
[Back to index](../../../index.md) [Back to index](../../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\Db\SqlArray: Generic SQL database backend. title: danog\MadelineProto\Db\SqlArray: Generic SQL database backend.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\Db\SqlArray` # `danog\MadelineProto\Db\SqlArray`
[Back to index](../../../index.md) [Back to index](../../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\EventHandler: Event handler. title: danog\MadelineProto\EventHandler: Event handler.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\EventHandler` # `danog\MadelineProto\EventHandler`
[Back to index](../../index.md) [Back to index](../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\Exception: Basic exception. title: danog\MadelineProto\Exception: Basic exception.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\Exception` # `danog\MadelineProto\Exception`
[Back to index](../../index.md) [Back to index](../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\FileCallback: File callback interface. title: danog\MadelineProto\FileCallback: File callback interface.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\FileCallback` # `danog\MadelineProto\FileCallback`
[Back to index](../../index.md) [Back to index](../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\FileCallbackInterface: File callback interface. title: danog\MadelineProto\FileCallbackInterface: File callback interface.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\FileCallbackInterface` # `danog\MadelineProto\FileCallbackInterface`
[Back to index](../../index.md) [Back to index](../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\Files\Server: MadelineProto fileserver. title: danog\MadelineProto\Files\Server: MadelineProto fileserver.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\Files\Server` # `danog\MadelineProto\Files\Server`
[Back to index](../../../index.md) [Back to index](../../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\Logger: Logger class. title: danog\MadelineProto\Logger: Logger class.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\Logger` # `danog\MadelineProto\Logger`
[Back to index](../../index.md) [Back to index](../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\Lua: Lua interface. title: danog\MadelineProto\Lua: Lua interface.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\Lua` # `danog\MadelineProto\Lua`
[Back to index](../../index.md) [Back to index](../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\MTProto: Manages all of the mtproto stuff. title: danog\MadelineProto\MTProto: Manages all of the mtproto stuff.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\MTProto` # `danog\MadelineProto\MTProto`
[Back to index](../../index.md) [Back to index](../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\MTProtoTools\CombinedUpdatesState: Stores multiple update states. title: danog\MadelineProto\MTProtoTools\CombinedUpdatesState: Stores multiple update states.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\MTProtoTools\CombinedUpdatesState` # `danog\MadelineProto\MTProtoTools\CombinedUpdatesState`
[Back to index](../../../index.md) [Back to index](../../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\MTProtoTools\ResponseInfo: Obtain response information for file to server. title: danog\MadelineProto\MTProtoTools\ResponseInfo: Obtain response information for file to server.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\MTProtoTools\ResponseInfo` # `danog\MadelineProto\MTProtoTools\ResponseInfo`
[Back to index](../../../index.md) [Back to index](../../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\MyTelegramOrgWrapper: Wrapper for my.telegram.org. title: danog\MadelineProto\MyTelegramOrgWrapper: Wrapper for my.telegram.org.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\MyTelegramOrgWrapper` # `danog\MadelineProto\MyTelegramOrgWrapper`
[Back to index](../../index.md) [Back to index](../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\PTSException: Internal error indicating a problem with Telegram's servers. title: danog\MadelineProto\PTSException: Internal error indicating a problem with Telegram's servers.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\PTSException` # `danog\MadelineProto\PTSException`
[Back to index](../../index.md) [Back to index](../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\PsrLogger: PSR-3 wrapper for MadelineProto's Logger. title: danog\MadelineProto\PsrLogger: PSR-3 wrapper for MadelineProto's Logger.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\PsrLogger` # `danog\MadelineProto\PsrLogger`
[Back to index](../../index.md) [Back to index](../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\RPCErrorException: Indicates an error returned by Telegram's API. title: danog\MadelineProto\RPCErrorException: Indicates an error returned by Telegram's API.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\RPCErrorException` # `danog\MadelineProto\RPCErrorException`
[Back to index](../../index.md) [Back to index](../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\ResponseException: Indicates an error thrown when an unexpected response is received from telegram's servers. title: danog\MadelineProto\ResponseException: Indicates an error thrown when an unexpected response is received from telegram's servers.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\ResponseException` # `danog\MadelineProto\ResponseException`
[Back to index](../../index.md) [Back to index](../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\SecurityException: Indicates a security error. title: danog\MadelineProto\SecurityException: Indicates a security error.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\SecurityException` # `danog\MadelineProto\SecurityException`
[Back to index](../../index.md) [Back to index](../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\Settings: Settings class used for configuring MadelineProto. title: danog\MadelineProto\Settings: Settings class used for configuring MadelineProto.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\Settings` # `danog\MadelineProto\Settings`
[Back to index](../../index.md) [Back to index](../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\Settings\AppInfo: App information. title: danog\MadelineProto\Settings\AppInfo: App information.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\Settings\AppInfo` # `danog\MadelineProto\Settings\AppInfo`
[Back to index](../../../index.md) [Back to index](../../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\Settings\Auth: Cryptography settings. title: danog\MadelineProto\Settings\Auth: Cryptography settings.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\Settings\Auth` # `danog\MadelineProto\Settings\Auth`
[Back to index](../../../index.md) [Back to index](../../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\Settings\Connection: Connection settings. title: danog\MadelineProto\Settings\Connection: Connection settings.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\Settings\Connection` # `danog\MadelineProto\Settings\Connection`
[Back to index](../../../index.md) [Back to index](../../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\Settings\Database\DatabaseAbstract: Base class for database backends. title: danog\MadelineProto\Settings\Database\DatabaseAbstract: Base class for database backends.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\Settings\Database\DatabaseAbstract` # `danog\MadelineProto\Settings\Database\DatabaseAbstract`
[Back to index](../../../../index.md) [Back to index](../../../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\Settings\Database\Memory: Memory backend settings. title: danog\MadelineProto\Settings\Database\Memory: Memory backend settings.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\Settings\Database\Memory` # `danog\MadelineProto\Settings\Database\Memory`
[Back to index](../../../../index.md) [Back to index](../../../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\Settings\Database\Mysql: MySQL backend settings. title: danog\MadelineProto\Settings\Database\Mysql: MySQL backend settings.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\Settings\Database\Mysql` # `danog\MadelineProto\Settings\Database\Mysql`
[Back to index](../../../../index.md) [Back to index](../../../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\Settings\Database\Postgres: Postgres backend settings. title: danog\MadelineProto\Settings\Database\Postgres: Postgres backend settings.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\Settings\Database\Postgres` # `danog\MadelineProto\Settings\Database\Postgres`
[Back to index](../../../../index.md) [Back to index](../../../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\Settings\Database\Redis: Redis backend settings. title: danog\MadelineProto\Settings\Database\Redis: Redis backend settings.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\Settings\Database\Redis` # `danog\MadelineProto\Settings\Database\Redis`
[Back to index](../../../../index.md) [Back to index](../../../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\Settings\Database\SqlAbstract: Generic db backend settings. title: danog\MadelineProto\Settings\Database\SqlAbstract: Generic db backend settings.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\Settings\Database\SqlAbstract` # `danog\MadelineProto\Settings\Database\SqlAbstract`
[Back to index](../../../../index.md) [Back to index](../../../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\Settings\DatabaseAbstract: Base class for storage backends. title: danog\MadelineProto\Settings\DatabaseAbstract: Base class for storage backends.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\Settings\DatabaseAbstract` # `danog\MadelineProto\Settings\DatabaseAbstract`
[Back to index](../../../index.md) [Back to index](../../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\Settings\Files: File management settings. title: danog\MadelineProto\Settings\Files: File management settings.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\Settings\Files` # `danog\MadelineProto\Settings\Files`
[Back to index](../../../index.md) [Back to index](../../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\Settings\Ipc: IPC server settings. title: danog\MadelineProto\Settings\Ipc: IPC server settings.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\Settings\Ipc` # `danog\MadelineProto\Settings\Ipc`
[Back to index](../../../index.md) [Back to index](../../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\Settings\Logger: Logger settings. title: danog\MadelineProto\Settings\Logger: Logger settings.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\Settings\Logger` # `danog\MadelineProto\Settings\Logger`
[Back to index](../../../index.md) [Back to index](../../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\Settings\Peer: Peer database settings. title: danog\MadelineProto\Settings\Peer: Peer database settings.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\Settings\Peer` # `danog\MadelineProto\Settings\Peer`
[Back to index](../../../index.md) [Back to index](../../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\Settings\Pwr: PWRTelegram settings. title: danog\MadelineProto\Settings\Pwr: PWRTelegram settings.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\Settings\Pwr` # `danog\MadelineProto\Settings\Pwr`
[Back to index](../../../index.md) [Back to index](../../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\Settings\RPC: RPC settings. title: danog\MadelineProto\Settings\RPC: RPC settings.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\Settings\RPC` # `danog\MadelineProto\Settings\RPC`
[Back to index](../../../index.md) [Back to index](../../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\Settings\SecretChats: Secret chat settings. title: danog\MadelineProto\Settings\SecretChats: Secret chat settings.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\Settings\SecretChats` # `danog\MadelineProto\Settings\SecretChats`
[Back to index](../../../index.md) [Back to index](../../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\Settings\Serialization: Serialization settings. title: danog\MadelineProto\Settings\Serialization: Serialization settings.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\Settings\Serialization` # `danog\MadelineProto\Settings\Serialization`
[Back to index](../../../index.md) [Back to index](../../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\Settings\TLSchema: TL schema settings. title: danog\MadelineProto\Settings\TLSchema: TL schema settings.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\Settings\TLSchema` # `danog\MadelineProto\Settings\TLSchema`
[Back to index](../../../index.md) [Back to index](../../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\Settings\Templates: Web and CLI template settings for login. title: danog\MadelineProto\Settings\Templates: Web and CLI template settings for login.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\Settings\Templates` # `danog\MadelineProto\Settings\Templates`
[Back to index](../../../index.md) [Back to index](../../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\Shutdown: Class that controls script shutdown. title: danog\MadelineProto\Shutdown: Class that controls script shutdown.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\Shutdown` # `danog\MadelineProto\Shutdown`
[Back to index](../../index.md) [Back to index](../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\StrTools: Some tools. title: danog\MadelineProto\StrTools: Some tools.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\StrTools` # `danog\MadelineProto\StrTools`
[Back to index](../../index.md) [Back to index](../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\TL\Conversion\Exception: TL conversion exception. title: danog\MadelineProto\TL\Conversion\Exception: TL conversion exception.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\TL\Conversion\Exception` # `danog\MadelineProto\TL\Conversion\Exception`
[Back to index](../../../../index.md) [Back to index](../../../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\TL\Conversion\Extension: Manages generation of extensions for files. title: danog\MadelineProto\TL\Conversion\Extension: Manages generation of extensions for files.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\TL\Conversion\Extension` # `danog\MadelineProto\TL\Conversion\Extension`
[Back to index](../../../../index.md) [Back to index](../../../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\TL\Exception: TL deserialization exception. title: danog\MadelineProto\TL\Exception: TL deserialization exception.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\TL\Exception` # `danog\MadelineProto\TL\Exception`
[Back to index](../../../index.md) [Back to index](../../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\TL\Types\Button: Clickable button. title: danog\MadelineProto\TL\Types\Button: Clickable button.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\TL\Types\Button` # `danog\MadelineProto\TL\Types\Button`
[Back to index](../../../../index.md) [Back to index](../../../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\TL\Types\Bytes: Bytes wrapper. title: danog\MadelineProto\TL\Types\Bytes: Bytes wrapper.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\TL\Types\Bytes` # `danog\MadelineProto\TL\Types\Bytes`
[Back to index](../../../../index.md) [Back to index](../../../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\TON\API: TON API. title: danog\MadelineProto\TON\API: TON API.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\TON\API` # `danog\MadelineProto\TON\API`
[Back to index](../../../index.md) [Back to index](../../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\Tools: Some tools. title: danog\MadelineProto\Tools: Some tools.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\Tools` # `danog\MadelineProto\Tools`
[Back to index](../../index.md) [Back to index](../../index.md)

View File

@ -2,6 +2,7 @@
title: danog\MadelineProto\VoIPServerConfig: Manages storage of VoIP server config. title: danog\MadelineProto\VoIPServerConfig: Manages storage of VoIP server config.
description: description:
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog\MadelineProto\VoIPServerConfig` # `danog\MadelineProto\VoIPServerConfig`
[Back to index](../../index.md) [Back to index](../../index.md)

View File

@ -1,6 +1,7 @@
--- ---
title: danog/madelineproto title: danog/madelineproto
description: PHP implementation of telegram's MTProto protocol. description: PHP implementation of telegram's MTProto protocol.
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
--- ---
# `danog/madelineproto` # `danog/madelineproto`