Your IP : 216.73.216.97


Current Path : /var/www/clients/client3/web2/web/vendor/webonyx/graphql-php/src/
Upload File :
Current File : /var/www/clients/client3/web2/web/vendor/webonyx/graphql-php/src/Schema.php

<?php

declare(strict_types=1);

namespace GraphQL;

use function trigger_error;
use const E_USER_DEPRECATED;

trigger_error(
    'GraphQL\Schema is moved to GraphQL\Type\Schema',
    E_USER_DEPRECATED
);

/**
 * Schema Definition
 *
 * @deprecated moved to GraphQL\Type\Schema
 */
class Schema extends \GraphQL\Type\Schema
{
}