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 1515
1616use ApiPlatform \Doctrine \Odm \State \Options as ODMOptions ;
1717use ApiPlatform \Doctrine \Orm \State \Options ;
18+ use ApiPlatform \GraphQl \Exception \InvalidTypeException ;
1819use ApiPlatform \GraphQl \Resolver \Factory \ResolverFactory ;
1920use ApiPlatform \GraphQl \Resolver \Factory \ResolverFactoryInterface ;
2021use ApiPlatform \GraphQl \Type \Definition \TypeInterface ;
3637use GraphQL \Type \Definition \Type as GraphQLType ;
3738use GraphQL \Type \Definition \WrappingType ;
3839use Psr \Container \ContainerInterface ;
39- use Symfony \Component \Config \Definition \Exception \InvalidTypeException ;
4040use Symfony \Component \PropertyInfo \Type ;
4141use Symfony \Component \Serializer \NameConverter \AdvancedNameConverterInterface ;
4242use Symfony \Component \Serializer \NameConverter \MetadataAwareNameConverter ;
You can’t perform that action at this time.
0 commit comments