2015-07-15 20:05:46 +03:00
|
|
|
<?php
|
2018-09-02 11:17:27 +03:00
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
2015-07-15 20:05:46 +03:00
|
|
|
namespace GraphQL;
|
|
|
|
|
2018-09-02 11:17:27 +03:00
|
|
|
use function trigger_error;
|
|
|
|
use const E_USER_DEPRECATED;
|
|
|
|
|
2018-05-27 15:13:32 +03:00
|
|
|
trigger_error(
|
|
|
|
'GraphQL\Schema is moved to GraphQL\Type\Schema',
|
|
|
|
E_USER_DEPRECATED
|
|
|
|
);
|
2015-07-15 20:05:46 +03:00
|
|
|
|
2016-10-17 14:33:47 +03:00
|
|
|
/**
|
2016-10-18 21:34:46 +03:00
|
|
|
* Schema Definition
|
|
|
|
*
|
2017-08-12 17:32:07 +03:00
|
|
|
* @deprecated moved to GraphQL\Type\Schema
|
2016-10-17 14:33:47 +03:00
|
|
|
*/
|
2017-08-12 17:32:07 +03:00
|
|
|
class Schema extends \GraphQL\Type\Schema
|
2015-07-15 20:05:46 +03:00
|
|
|
{
|
|
|
|
}
|