SetupFormList.php 487 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * Setup preferences form
  4. */
  5. declare(strict_types=1);
  6. namespace PhpMyAdmin\Config\Forms\Setup;
  7. use PhpMyAdmin\Config\Forms\BaseFormList;
  8. class SetupFormList extends BaseFormList
  9. {
  10. /** @var string[] */
  11. protected static $all = [
  12. 'Config',
  13. 'Export',
  14. 'Features',
  15. 'Import',
  16. 'Main',
  17. 'Navi',
  18. 'Servers',
  19. 'Sql',
  20. ];
  21. /** @var string */
  22. protected static $ns = 'PhpMyAdmin\\Config\\Forms\\Setup\\';
  23. }