@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | } |
61 | 61 | |
62 | 62 | /** |
63 | - * @param mixed $name |
|
63 | + * @param string $name |
|
64 | 64 | */ |
65 | 65 | public function setName($name) |
66 | 66 | { |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | } |
77 | 77 | |
78 | 78 | /** |
79 | - * @param mixed $model |
|
79 | + * @param string $model |
|
80 | 80 | */ |
81 | 81 | public function setModel($model) |
82 | 82 | { |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | } |
85 | 85 | |
86 | 86 | /** |
87 | - * @return Field[]|Query[] |
|
87 | + * @return Query[] |
|
88 | 88 | */ |
89 | 89 | public function getFields() |
90 | 90 | { |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | } |
93 | 93 | |
94 | 94 | /** |
95 | - * @param Field[]|Query[] $fields |
|
95 | + * @param Field[] $fields |
|
96 | 96 | */ |
97 | 97 | public function setFields($fields) |
98 | 98 | { |
@@ -74,7 +74,7 @@ |
||
74 | 74 | } |
75 | 75 | |
76 | 76 | /** |
77 | - * @return Field[]|Query[]|FragmentInterface[] |
|
77 | + * @return Query[] |
|
78 | 78 | */ |
79 | 79 | public function getFields() |
80 | 80 | { |
@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | } |
29 | 29 | |
30 | 30 | /** |
31 | - * @return Field[]|Query[] |
|
31 | + * @return Field[] |
|
32 | 32 | */ |
33 | 33 | public function getFields() |
34 | 34 | { |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | } |
37 | 37 | |
38 | 38 | /** |
39 | - * @param Field[]|Query[] $fields |
|
39 | + * @param Field[] $fields |
|
40 | 40 | */ |
41 | 41 | public function setFields($fields) |
42 | 42 | { |
@@ -25,6 +25,9 @@ |
||
25 | 25 | { |
26 | 26 | } |
27 | 27 | |
28 | + /** |
|
29 | + * @param \Youshido\GraphQL\Type\Object\ObjectType $object |
|
30 | + */ |
|
28 | 31 | public function resolveType($object) |
29 | 32 | { |
30 | 33 | return $this->getConfig()->resolveType($object); |
@@ -57,7 +57,7 @@ |
||
57 | 57 | * @param Field $objField |
58 | 58 | * @param AbstractInterfaceType $interface |
59 | 59 | * |
60 | - * @return bool |
|
60 | + * @return boolean|null |
|
61 | 61 | * |
62 | 62 | * @throws ConfigurationException |
63 | 63 | */ |
@@ -42,8 +42,8 @@ |
||
42 | 42 | public function getDescription() |
43 | 43 | { |
44 | 44 | return 'The `String` scalar type represents textual data, represented as UTF-8 ' . |
45 | - 'character sequences. The String type is most often used by GraphQL to ' . |
|
46 | - 'represent free-form human-readable text.'; |
|
45 | + 'character sequences. The String type is most often used by GraphQL to ' . |
|
46 | + 'represent free-form human-readable text.'; |
|
47 | 47 | } |
48 | 48 | |
49 | 49 | } |
@@ -29,8 +29,8 @@ |
||
29 | 29 | public function getDescription() |
30 | 30 | { |
31 | 31 | return 'The `Float` scalar type represents signed double-precision fractional ' . |
32 | - 'values as specified by ' . |
|
33 | - '[IEEE 754](http://en.wikipedia.org/wiki/IEEE_floating_point).'; |
|
32 | + 'values as specified by ' . |
|
33 | + '[IEEE 754](http://en.wikipedia.org/wiki/IEEE_floating_point).'; |
|
34 | 34 | } |
35 | 35 | |
36 | 36 | } |
@@ -40,9 +40,9 @@ |
||
40 | 40 | public function getDescription() |
41 | 41 | { |
42 | 42 | return 'The `Int` scalar type represents non-fractional signed whole numeric ' . |
43 | - 'values. Int can represent values between -(2^53 - 1) and 2^53 - 1 since ' . |
|
44 | - 'represented in JSON as double-precision floating point numbers specified' . |
|
45 | - 'by [IEEE 754](http://en.wikipedia.org/wiki/IEEE_floating_point).'; |
|
43 | + 'values. Int can represent values between -(2^53 - 1) and 2^53 - 1 since ' . |
|
44 | + 'represented in JSON as double-precision floating point numbers specified' . |
|
45 | + 'by [IEEE 754](http://en.wikipedia.org/wiki/IEEE_floating_point).'; |
|
46 | 46 | } |
47 | 47 | |
48 | 48 | } |
@@ -30,9 +30,9 @@ |
||
30 | 30 | public function getDescription() |
31 | 31 | { |
32 | 32 | return 'The `ID` scalar type represents a unique identifier, often used to ' . |
33 | - 'refetch an object or as key for a cache. The ID type appears in a JSON ' . |
|
34 | - 'response as a String; however, it is not intended to be human-readable. ' . |
|
35 | - 'When expected as an input type, any string (such as `"4"`) or integer ' . |
|
36 | - '(such as `4`) input value will be accepted as an ID.'; |
|
33 | + 'refetch an object or as key for a cache. The ID type appears in a JSON ' . |
|
34 | + 'response as a String; however, it is not intended to be human-readable. ' . |
|
35 | + 'When expected as an input type, any string (such as `"4"`) or integer ' . |
|
36 | + '(such as `4`) input value will be accepted as an ID.'; |
|
37 | 37 | } |
38 | 38 | } |