13 lines
176 B
PHP
13 lines
176 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpMyAdmin\Plugins;
|
|
|
|
enum PluginType: string
|
|
{
|
|
case Export = 'Export';
|
|
case Import = 'Import';
|
|
case Schema = 'Schema';
|
|
}
|