MadelineProto/src/danog/MadelineProto/Db/DbType.php
Alexander Pankratov 46f7e63734 Async refactor
2020-05-23 15:10:47 +03:00

8 lines
178 B
PHP

<?php
namespace danog\MadelineProto\Db;
interface DbType
{
static function getInstance(string $name, $value = null, string $tablePrefix = '', array $settings = []): self;
}