graphql-php/src/Schema.php
Simon Podlipsky 76e1c33b68
Fix CS in src
2018-09-02 10:39:03 +02:00

23 lines
328 B
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
{
}