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

16 lines
238 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\MysqlArray as DbMysqlArray;
2020-09-24 23:25:54 +02:00
/**
* MySQL database backend, no caching.
2020-10-17 12:47:05 +02:00
*
* @internal
*/
2020-09-28 21:09:10 +02:00
class MysqlArray extends DbMysqlArray
2020-09-24 23:25:54 +02:00
{
use NullCacheTrait;
}