File tree Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ /*
4
+ * This file is part of the API Platform project.
5
+ *
6
+ * (c) Kévin Dunglas <[email protected] >
7
+ *
8
+ * For the full copyright and license information, please view the LICENSE
9
+ * file that was distributed with this source code.
10
+ */
11
+
12
+ declare (strict_types=1 );
13
+
14
+ namespace ApiPlatform \GraphQl \Exception ;
15
+
16
+ final class InvalidTypeException extends \RuntimeException
17
+ {
18
+ }
Original file line number Diff line number Diff line change 15
15
16
16
use ApiPlatform \Doctrine \Odm \State \Options as ODMOptions ;
17
17
use ApiPlatform \Doctrine \Orm \State \Options ;
18
+ use ApiPlatform \GraphQl \Exception \InvalidTypeException ;
18
19
use ApiPlatform \GraphQl \Resolver \Factory \ResolverFactory ;
19
20
use ApiPlatform \GraphQl \Resolver \Factory \ResolverFactoryInterface ;
20
21
use ApiPlatform \GraphQl \Type \Definition \TypeInterface ;
36
37
use GraphQL \Type \Definition \Type as GraphQLType ;
37
38
use GraphQL \Type \Definition \WrappingType ;
38
39
use Psr \Container \ContainerInterface ;
39
- use Symfony \Component \Config \Definition \Exception \InvalidTypeException ;
40
40
use Symfony \Component \PropertyInfo \Type ;
41
41
use Symfony \Component \Serializer \NameConverter \AdvancedNameConverterInterface ;
42
42
use Symfony \Component \Serializer \NameConverter \MetadataAwareNameConverter ;
You can’t perform that action at this time.
0 commit comments