graphql-php/src/Schema.php
2018-05-27 19:13:32 +07:00

17 lines
243 B
PHP

<?php
namespace GraphQL;
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
{
}