mirror of
https://github.com/danog/MadelineProto.git
synced 2025-01-11 13:48:21 +01:00
14 lines
349 B
PHP
14 lines
349 B
PHP
|
<?php declare(strict_types=1);
|
||
|
|
||
|
namespace danog\MadelineProto\EventHandler;
|
||
|
|
||
|
use danog\MadelineProto\EventHandler\SimpleFilter\Incoming;
|
||
|
use danog\MadelineProto\EventHandler\SimpleFilter\Outgoing;
|
||
|
|
||
|
/**
|
||
|
* @internal An internal interface used to avoid type errors when using simple filters.
|
||
|
*/
|
||
|
interface SimpleFilters extends Incoming, Outgoing
|
||
|
{
|
||
|
}
|