phpmyadmin/libraries/engines/performance_schema.lib.php
Hugues Peccatte 0761fb1801 Rename classes files.
Rename classes.

Signed-off-by: Hugues Peccatte <hugues.peccatte@gmail.com>
2015-09-01 21:30:21 +02:00

33 lines
611 B
PHP

<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* The performance schema storage engine
*
* @package PhpMyAdmin-Engines
*/
use PMA\libraries\StorageEngine;
if (! defined('PHPMYADMIN')) {
exit;
}
/**
* The performance schema storage engine
*
* @package PhpMyAdmin-Engines
*/
class PMA_StorageEngine_PerformanceSchema extends StorageEngine
{
/**
* Returns string with filename for the MySQL helppage
* about this storage engine
*
* @return string mysql helppage filename
*/
public function getMysqlHelpPage()
{
return 'performance-schema';
}
}