Add namespace to class

This commit is contained in:
spawnia 2018-09-03 22:12:03 +02:00
parent c4fe304efe
commit 1ec4927f69
3 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,6 @@ use GraphQL\Validator\Rules\CustomValidationRule;
use GraphQL\Validator\ValidationContext; use GraphQL\Validator\ValidationContext;
use function count; use function count;
use function sprintf; use function sprintf;
use Unsafe;
class QueryExecutionTest extends ServerTestCase class QueryExecutionTest extends ServerTestCase
{ {

View File

@ -14,7 +14,6 @@ use function trigger_error;
use const E_USER_DEPRECATED; use const E_USER_DEPRECATED;
use const E_USER_NOTICE; use const E_USER_NOTICE;
use const E_USER_WARNING; use const E_USER_WARNING;
use Unsafe;
abstract class ServerTestCase extends TestCase abstract class ServerTestCase extends TestCase
{ {

View File

@ -1,5 +1,7 @@
<?php <?php
namespace GraphQL\Tests\Server;
use GraphQL\Error\ClientAware; use GraphQL\Error\ClientAware;
class Unsafe extends \Exception implements ClientAware class Unsafe extends \Exception implements ClientAware