MadelineProto/src/danog/MadelineProto/Db/DbType.php

19 lines
402 B
PHP
Raw Normal View History

2020-04-25 21:57:55 +02:00
<?php
namespace danog\MadelineProto\Db;
2020-05-17 21:04:32 +02:00
use Amp\Promise;
use danog\MadelineProto\Settings\Database\DatabaseAbstract;
2020-05-17 21:04:32 +02:00
2020-04-25 21:57:55 +02:00
interface DbType
{
2020-05-17 21:04:32 +02:00
/**
* @param string $table
* @param null|DbType|array $previous
* @param DatabaseAbstract $settings
2020-05-17 21:04:32 +02:00
*
* @return Promise<self>
*/
public static function getInstance(string $table, $previous, $settings): Promise;
2020-06-16 17:52:55 +02:00
}