vendor/overblog/graphql-bundle/src/Definition/Resolver/ResolverInterface.php line 11

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace Overblog\GraphQLBundle\Definition\Resolver;
  4. use function sprintf;
  5. use function trigger_error;
  6. use const E_USER_DEPRECATED;
  7. @trigger_error(sprintf('The "%s" interface is deprecated since 0.14 and will be removed in 1.0. Use "%s" instead', ResolverInterface::class, QueryInterface::class), E_USER_DEPRECATED);
  8. /**
  9. * @deprecated since 0.14 and will be removed in 1.0. Use Overblog\GraphQLBundle\Definition\Resolver\QueryInterface instead.
  10. * @codeCoverageIgnore
  11. */
  12. interface ResolverInterface
  13. {
  14. }