Skip to content

Commit 30eccf2

Browse files
committed
Rename 'Graphqlite' to 'GraphQLite'
1 parent ae2c741 commit 30eccf2

15 files changed

+29
-29
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![Coverage Status](https://coveralls.io/repos/thecodingmachine/graphqlite-symfony-validator-bridge/badge.svg?branch=master&service=github)](https://coveralls.io/github/thecodingmachine/graphqlite-symfony-validator-bridge?branch=master)
66

77

8-
# Graphqlite - Symfony validator bridge
8+
# GraphQLite - Symfony validator bridge
99

1010
A bridge between GraphQLite and the Symfony Validator component
1111

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@
3838
},
3939
"autoload" : {
4040
"psr-4" : {
41-
"TheCodingMachine\\Graphqlite\\Validator\\" : "src/"
41+
"TheCodingMachine\\GraphQLite\\Validator\\" : "src/"
4242
}
4343
},
4444
"autoload-dev" : {
4545
"psr-4" : {
46-
"TheCodingMachine\\Graphqlite\\Validator\\" : "tests/"
46+
"TheCodingMachine\\GraphQLite\\Validator\\" : "tests/"
4747
}
4848
},
4949
"extra": {

src/Annotations/Assertion.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace TheCodingMachine\Graphqlite\Validator\Annotations;
5+
namespace TheCodingMachine\GraphQLite\Validator\Annotations;
66

77
use BadMethodCallException;
88
use Symfony\Component\Validator\Constraint;

src/ConstraintViolationException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace TheCodingMachine\Graphqlite\Validator;
5+
namespace TheCodingMachine\GraphQLite\Validator;
66

77
use Exception;
88
use Symfony\Component\Validator\ConstraintViolationInterface;

src/Mappers/Parameters/AssertParameterMiddleware.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace TheCodingMachine\Graphqlite\Validator\Mappers\Parameters;
5+
namespace TheCodingMachine\GraphQLite\Validator\Mappers\Parameters;
66

77
use phpDocumentor\Reflection\DocBlock;
88
use phpDocumentor\Reflection\Type;
@@ -15,7 +15,7 @@
1515
use TheCodingMachine\GraphQLite\Mappers\Parameters\ParameterMiddlewareInterface;
1616
use TheCodingMachine\GraphQLite\Parameters\InputTypeParameterInterface;
1717
use TheCodingMachine\GraphQLite\Parameters\ParameterInterface;
18-
use TheCodingMachine\Graphqlite\Validator\Annotations\Assertion;
18+
use TheCodingMachine\GraphQLite\Validator\Annotations\Assertion;
1919
use function array_map;
2020
use function array_merge;
2121

src/Mappers/Parameters/InvalidAssertionAnnotationException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace TheCodingMachine\Graphqlite\Validator\Mappers\Parameters;
5+
namespace TheCodingMachine\GraphQLite\Validator\Mappers\Parameters;
66

77
use Exception;
88
use ReflectionParameter;

src/Mappers/Parameters/ParameterValidator.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace TheCodingMachine\Graphqlite\Validator\Mappers\Parameters;
5+
namespace TheCodingMachine\GraphQLite\Validator\Mappers\Parameters;
66

77
use GraphQL\Type\Definition\InputType;
88
use GraphQL\Type\Definition\ResolveInfo;
@@ -12,7 +12,7 @@
1212
use Symfony\Component\Validator\Validator\ValidatorInterface;
1313
use Symfony\Contracts\Translation\TranslatorInterface;
1414
use TheCodingMachine\GraphQLite\Parameters\InputTypeParameterInterface;
15-
use TheCodingMachine\Graphqlite\Validator\ValidationFailedException;
15+
use TheCodingMachine\GraphQLite\Validator\ValidationFailedException;
1616

1717
class ParameterValidator implements InputTypeParameterInterface
1818
{

src/ValidationFailedException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace TheCodingMachine\Graphqlite\Validator;
5+
namespace TheCodingMachine\GraphQLite\Validator;
66

77
use GraphQL\Error\ClientAware;
88
use InvalidArgumentException;

tests/Annotations/AssertionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace TheCodingMachine\Graphqlite\Validator\Annotations;
3+
namespace TheCodingMachine\GraphQLite\Validator\Annotations;
44

55
use BadMethodCallException;
66
use PHPUnit\Framework\TestCase;

tests/ConstraintValidationExceptionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace TheCodingMachine\Graphqlite\Validator;
3+
namespace TheCodingMachine\GraphQLite\Validator;
44

55
use PHPUnit\Framework\TestCase;
66
use Symfony\Component\Validator\ConstraintViolation;

0 commit comments

Comments
 (0)