Innobase.php 285 B

12345678910111213141516171819
  1. <?php
  2. /* vim: set expandtab sw=4 ts=4 sts=4: */
  3. /**
  4. * The Innobase storage engine
  5. *
  6. * @package PhpMyAdmin-Engines
  7. */
  8. declare(strict_types=1);
  9. namespace PhpMyAdmin\Engines;
  10. /**
  11. * The Innobase storage engine
  12. *
  13. * @package PhpMyAdmin-Engines
  14. */
  15. class Innobase extends Innodb
  16. {
  17. }