phpmyadmin/libraries/classes/Plugins/Transformations/Output/Text_Plain_External.php
Maurício Meneghini Fauth f03cc59c8c
Add native types to TransformationsInterface methods
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2022-01-26 15:48:08 -03:00

33 lines
639 B
PHP

<?php
/**
* Text Plain External Transformations plugin for phpMyAdmin
*/
declare(strict_types=1);
namespace PhpMyAdmin\Plugins\Transformations\Output;
use PhpMyAdmin\Plugins\Transformations\Abs\ExternalTransformationsPlugin;
/**
* Handles the external transformation for text plain
*/
class Text_Plain_External extends ExternalTransformationsPlugin
{
/**
* Gets the plugin`s MIME type
*/
public static function getMIMEType(): string
{
return 'Text';
}
/**
* Gets the plugin`s MIME subtype
*/
public static function getMIMESubtype(): string
{
return 'Plain';
}
}