phpmyadmin/libraries/plugins/transformations/output/Text_Plain_External.php
Maurício Meneghini Fauth 385b687013 Ignore coding standard errors in transformations
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
2017-04-08 15:12:20 -03:00

42 lines
870 B
PHP

<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* Text Plain External Transformations plugin for phpMyAdmin
*
* @package PhpMyAdmin-Transformations
* @subpackage External
*/
namespace PMA\libraries\plugins\transformations\output;
use PMA\libraries\plugins\transformations\abs\ExternalTransformationsPlugin;
/**
* Handles the external transformation for text plain
*
* @package PhpMyAdmin-Transformations
* @subpackage External
*/
// @codingStandardsIgnoreLine
class Text_Plain_External extends ExternalTransformationsPlugin
{
/**
* Gets the plugin`s MIME type
*
* @return string
*/
public static function getMIMEType()
{
return "Text";
}
/**
* Gets the plugin`s MIME subtype
*
* @return string
*/
public static function getMIMESubtype()
{
return "Plain";
}
}