gl-website-deployer/admin/phpMyAdmin/libraries/classes/Engines/Merge.php

18 lines
205 B
PHP
Raw Normal View History

2024-11-23 20:45:29 +01:00
<?php
/**
* The MERGE storage engine
*/
declare(strict_types=1);
namespace PhpMyAdmin\Engines;
use PhpMyAdmin\StorageEngine;
/**
* The MERGE storage engine
*/
class Merge extends StorageEngine
{
}