53
53
use function explode ;
54
54
use function in_array ;
55
55
use function iterator_to_array ;
56
- use function method_exists ;
57
56
use function reset ;
58
57
use function trim ;
59
58
@@ -74,7 +73,10 @@ public function __construct(
74
73
$ this ->phpDocumentorTypeResolver = new PhpDocumentorTypeResolver ();
75
74
}
76
75
77
- public function mapReturnType (ReflectionMethod $ refMethod , DocBlock $ docBlockObj ): GraphQLType &OutputType
76
+ public function mapReturnType (
77
+ ReflectionMethod $ refMethod ,
78
+ DocBlock $ docBlockObj ,
79
+ ): GraphQLType &OutputType
78
80
{
79
81
$ returnType = $ refMethod ->getReturnType ();
80
82
if ($ returnType !== null ) {
@@ -94,7 +96,7 @@ public function mapReturnType(ReflectionMethod $refMethod, DocBlock $docBlockObj
94
96
$ refMethod ,
95
97
$ docBlockObj ,
96
98
);
97
- assert ($ type instanceof GraphQLType && $ type instanceof OutputType );
99
+ assert (! $ type instanceof InputType );
98
100
} catch (CannotMapTypeExceptionInterface $ e ) {
99
101
$ e ->addReturnInfo ($ refMethod );
100
102
throw $ e ;
@@ -318,21 +320,14 @@ public function mapInputProperty(
318
320
}
319
321
320
322
if ($ isNullable === null ) {
321
- $ isNullable = false ;
322
- // getType function on property reflection is available only since PHP 7.4
323
- if (method_exists ($ refProperty , 'getType ' )) {
324
- $ refType = $ refProperty ->getType ();
325
- if ($ refType !== null ) {
326
- $ isNullable = $ refType ->allowsNull ();
327
- }
328
- }
323
+ $ isNullable = $ refProperty ->getType ()?->allowsNull() ?? false ;
329
324
}
330
325
331
326
if ($ inputTypeName ) {
332
327
$ inputType = $ this ->typeResolver ->mapNameToInputType ($ inputTypeName );
333
328
} else {
334
329
$ inputType = $ this ->mapPropertyType ($ refProperty , $ docBlock , true , $ argumentName , $ isNullable );
335
- assert ($ inputType instanceof InputType && $ inputType instanceof GraphQLType );
330
+ assert (! $ inputType instanceof OutputType );
336
331
}
337
332
338
333
$ hasDefault = $ defaultValue !== null || $ isNullable ;
@@ -452,8 +447,6 @@ private function reflectionTypeToPhpDocType(ReflectionType $type, ReflectionClas
452
447
assert ($ type instanceof ReflectionNamedType || $ type instanceof ReflectionUnionType);
453
448
if ($ type instanceof ReflectionNamedType) {
454
449
$ phpdocType = $ this ->phpDocumentorTypeResolver ->resolve ($ type ->getName ());
455
- assert ($ phpdocType !== null );
456
-
457
450
$ phpdocType = $ this ->resolveSelf ($ phpdocType , $ reflectionClass );
458
451
459
452
if ($ type ->allowsNull ()) {
@@ -467,8 +460,6 @@ private function reflectionTypeToPhpDocType(ReflectionType $type, ReflectionClas
467
460
function ($ namedType ) use ($ reflectionClass ): Type {
468
461
assert ($ namedType instanceof ReflectionNamedType);
469
462
$ phpdocType = $ this ->phpDocumentorTypeResolver ->resolve ($ namedType ->getName ());
470
- assert ($ phpdocType !== null );
471
-
472
463
$ phpdocType = $ this ->resolveSelf ($ phpdocType , $ reflectionClass );
473
464
474
465
if ($ namedType ->allowsNull ()) {
0 commit comments