PerformanceSchema.php 602 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /* vim: set expandtab sw=4 ts=4 sts=4: */
  3. /**
  4. * The performance schema storage engine
  5. *
  6. * @package PhpMyAdmin-Engines
  7. */
  8. declare(strict_types=1);
  9. namespace PhpMyAdmin\Engines;
  10. use PhpMyAdmin\StorageEngine;
  11. /**
  12. * The performance schema storage engine
  13. *
  14. * @package PhpMyAdmin-Engines
  15. */
  16. class PerformanceSchema extends StorageEngine
  17. {
  18. /**
  19. * Returns string with filename for the MySQL helppage
  20. * about this storage engine
  21. *
  22. * @return string mysql helppage filename
  23. */
  24. public function getMysqlHelpPage()
  25. {
  26. return 'performance-schema';
  27. }
  28. }