Completed
Push — master ( 6bccbe...eb7768 )
by Sebastian
05:36
created
src/Type/Introspection.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -523,7 +523,7 @@  discard block
 block discarded – undo
523 523
 
524 524
     /**
525 525
      * @param $source
526
-     * @return null|string
526
+     * @return Definition\Types\OutputTypeInterface|null
527 527
      */
528 528
     public static function resolveFieldType($source) {
529 529
         if ($source instanceof FieldDefinition) {
@@ -632,7 +632,7 @@  discard block
 block discarded – undo
632 632
 
633 633
     /**
634 634
      * @param $source
635
-     * @return \Fubhy\GraphQL\Type\Definition\Types\InputTypeInterface
635
+     * @return string|null
636 636
      */
637 637
     public static function resolveInputValueDefaultValue($source) {
638 638
         if ($source instanceof InputObjectField || $source instanceof FieldArgument) {
@@ -698,7 +698,7 @@  discard block
 block discarded – undo
698 698
 
699 699
     /**
700 700
      * @param $source
701
-     * @return string
701
+     * @return boolean|null
702 702
      */
703 703
     public static function resolveEnumValueIsDeprecated($source) {
704 704
         if ($source instanceof EnumValueDefinition) {
@@ -710,7 +710,7 @@  discard block
 block discarded – undo
710 710
 
711 711
     /**
712 712
      * @param $source
713
-     * @return string
713
+     * @return boolean|null
714 714
      */
715 715
     public static function resolveEnumValueDeprecationReason($source) {
716 716
         if ($source instanceof EnumValueDefinition) {
Please login to merge, or discard this patch.