mirror of
https://github.com/retailcrm/graphql-php.git
synced 2024-11-25 22:36:02 +03:00
12 lines
202 B
PHP
12 lines
202 B
PHP
<?php
|
|
namespace GraphQL;
|
|
|
|
trigger_error(
|
|
'GraphQL\Utils was moved to GraphQL\Utils\Utils and will be deleted on next release',
|
|
E_USER_DEPRECATED
|
|
);
|
|
|
|
class Utils extends \GraphQL\Utils\Utils
|
|
{
|
|
}
|