File tree Expand file tree Collapse file tree 5 files changed +5
-4
lines changed Expand file tree Collapse file tree 5 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ public function __construct(
5656)
5757```
5858` TypeBuilder ` here is a new service ` Overblog\GraphQLBundle\Generator\TypeBuilder ` , which is also used internally.
59- The rest of the arguments were moved into the separate class ` Overblog\GraphQLBundle\Generator\TypeGeneratorOptions `
59+ The rest of the arguments were moved into the separate class ` Overblog\GraphQLBundle\Generator\Model\ TypeGeneratorOptions `
6060with the following constructor signature:
6161
6262``` php
Original file line number Diff line number Diff line change 22
33declare (strict_types=1 );
44
5- namespace Overblog \GraphQLBundle \Generator ;
5+ namespace Overblog \GraphQLBundle \Generator \ Model ;
66
77class TypeGeneratorOptions
88{
Original file line number Diff line number Diff line change 77use Composer \Autoload \ClassLoader ;
88use Overblog \GraphQLBundle \Config \Processor ;
99use Overblog \GraphQLBundle \Event \SchemaCompiledEvent ;
10+ use Overblog \GraphQLBundle \Generator \Model \TypeGeneratorOptions ;
1011use Symfony \Component \Filesystem \Filesystem ;
1112use Symfony \Contracts \EventDispatcher \EventDispatcherInterface ;
1213use function array_merge ;
Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ services:
8686 arguments :
8787 $typeConfigs : ' %overblog_graphql_types.config%'
8888 $options : !service
89- class : Overblog\GraphQLBundle\Generator\TypeGeneratorOptions
89+ class : Overblog\GraphQLBundle\Generator\Model\ TypeGeneratorOptions
9090 arguments :
9191 - ' %overblog_graphql.class_namespace%'
9292 - ' %overblog_graphql.cache_dir%'
Original file line number Diff line number Diff line change 66
77use Generator ;
88use Overblog \GraphQLBundle \Event \SchemaCompiledEvent ;
9+ use Overblog \GraphQLBundle \Generator \Model \TypeGeneratorOptions ;
910use Overblog \GraphQLBundle \Generator \TypeBuilder ;
1011use Overblog \GraphQLBundle \Generator \TypeGenerator ;
11- use Overblog \GraphQLBundle \Generator \TypeGeneratorOptions ;
1212use PHPUnit \Framework \TestCase ;
1313use Symfony \Contracts \EventDispatcher \EventDispatcherInterface ;
1414
You can’t perform that action at this time.
0 commit comments