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

16 lines
252 B
PHP
Raw Normal View History

2020-09-24 23:25:54 +02:00
<?php
namespace danog\MadelineProto\Db\NullCache;
2020-09-28 21:09:10 +02:00
use danog\MadelineProto\Db\PostgresArray as DbPostgresArray;
2020-09-24 23:25:54 +02:00
/**
* Postgres database backend, no caching.
*
2020-10-17 12:47:05 +02:00
* @internal
*/
2020-09-28 21:09:10 +02:00
class PostgresArray extends DbPostgresArray
2020-09-24 23:25:54 +02:00
{
use NullCacheTrait;
}