Promise.php 267 B

12345678910111213141516
  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\Query;
  8. /**
  9. * Wrapper for Promise
  10. */
  11. class Promise extends \GraphQL\Executor\Promise\Promise
  12. {
  13. }