1
0
mirror of https://github.com/danog/MadelineProto.git synced 2025-01-11 09:48:17 +01:00
MadelineProto/src/EventHandler/Update.php

13 lines
203 B
PHP
Raw Normal View History

2023-06-28 15:50:38 +02:00
<?php declare(strict_types=1);
namespace danog\MadelineProto\EventHandler;
use danog\MadelineProto\Ipc\IpcCapable;
2023-06-28 15:50:38 +02:00
/**
* Represents a generic update.
*/
abstract class Update extends IpcCapable
2023-06-28 15:50:38 +02:00
{
}