MadelineProto/src/danog/MadelineProto/Db/NullCache/PostgresArray.php

16 lines
252 B
PHP

<?php
namespace danog\MadelineProto\Db\NullCache;
use danog\MadelineProto\Db\PostgresArray as DbPostgresArray;
/**
* Postgres database backend, no caching.
*
* @internal
*/
class PostgresArray extends DbPostgresArray
{
use NullCacheTrait;
}