PerformanceSchema.php 576 B

1234567891011121314151617181920212223242526272829
  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. namespace PhpMyAdmin\Engines;
  9. use PhpMyAdmin\StorageEngine;
  10. /**
  11. * The performance schema storage engine
  12. *
  13. * @package PhpMyAdmin-Engines
  14. */
  15. class PerformanceSchema extends StorageEngine
  16. {
  17. /**
  18. * Returns string with filename for the MySQL helppage
  19. * about this storage engine
  20. *
  21. * @return string mysql helppage filename
  22. */
  23. public function getMysqlHelpPage()
  24. {
  25. return 'performance-schema';
  26. }
  27. }