ConfigElementInterface.php 412 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. declare(strict_types=1);
  7. namespace Magento\Framework\GraphQl\Config;
  8. /**
  9. * GraphQL config element.
  10. */
  11. interface ConfigElementInterface
  12. {
  13. /**
  14. * @return string
  15. */
  16. public function getName() : string;
  17. /**
  18. * @return string
  19. */
  20. public function getDescription() : string;
  21. }