Skip to content

Commit

Permalink
Apply StyleCI fixes
Browse files Browse the repository at this point in the history
StyleCI changed their existing codestyle of Laravel to now sort imports
alphabetically (as this has been promoted "the way" for Laravel with the
September release).
  • Loading branch information
mfn committed Nov 2, 2019
1 parent fbcf9ab commit 3df00f9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions src/Support/Field.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@
namespace Rebing\GraphQL\Support;

use Closure;
use Validator;
use Illuminate\Support\Arr;
use GraphQL\Type\Definition\NonNull;
use GraphQL\Type\Definition\InputObjectType;
use GraphQL\Type\Definition\ListOfType;
use GraphQL\Type\Definition\NonNull;
use GraphQL\Type\Definition\ResolveInfo;
use GraphQL\Type\Definition\Type as GraphqlType;
use GraphQL\Type\Definition\WrappingType;
use Rebing\GraphQL\Error\ValidationError;
use GraphQL\Type\Definition\InputObjectType;
use Illuminate\Support\Arr;
use Rebing\GraphQL\Error\AuthorizationError;
use GraphQL\Type\Definition\Type as GraphqlType;
use Rebing\GraphQL\Error\ValidationError;
use Validator;

abstract class Field
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
namespace Rebing\GraphQL\Tests\Support\Objects;

use GraphQL\Type\Definition\Type;
use Rebing\GraphQL\Support\Mutation;
use Rebing\GraphQL\Support\Facades\GraphQL;
use Rebing\GraphQL\Support\Mutation;

class UpdateExampleMutationWithInputType extends Mutation
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/MutationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
use Illuminate\Support\Arr;
use Illuminate\Validation\Validator;
use Rebing\GraphQL\Error\ValidationError;
use Rebing\GraphQL\Tests\Support\Objects\ExampleNestedValidationInputObject;
use Rebing\GraphQL\Tests\Support\Objects\ExampleType;
use Rebing\GraphQL\Tests\Support\Objects\ExampleValidationInputObject;
use Rebing\GraphQL\Tests\Support\Objects\ExampleNestedValidationInputObject;
use Rebing\GraphQL\Tests\Support\Objects\UpdateExampleMutationWithInputType;

class MutationTest extends FieldTest
Expand Down

0 comments on commit 3df00f9

Please sign in to comment.