File tree 4 files changed +13
-13
lines changed
4 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -9,9 +9,9 @@ class FloatType extends ScalarType
9
9
public $ name = Type::FLOAT ;
10
10
11
11
public $ description =
12
- 'The `Float` scalar type represents signed double-precision fractional ' .
13
- ' values as specified by ' .
14
- ' [IEEE 754](http://en.wikipedia.org/wiki/IEEE_floating_point). ' ;
12
+ 'The `Float` scalar type represents signed double-precision fractional
13
+ values as specified by
14
+ [IEEE 754](http://en.wikipedia.org/wiki/IEEE_floating_point). ' ;
15
15
16
16
public function serialize ($ value )
17
17
{
Original file line number Diff line number Diff line change @@ -9,11 +9,11 @@ class IDType extends ScalarType
9
9
public $ name = 'ID ' ;
10
10
11
11
public $ description =
12
- 'The `ID` scalar type represents a unique identifier, often used to ' .
13
- ' refetch an object or as key for a cache. The ID type appears in a JSON ' .
14
- ' response as a String; however, it is not intended to be human-readable. ' .
15
- ' When expected as an input type, any string (such as `"4"`) or integer ' .
16
- ' (such as `4`) input value will be accepted as an ID. ' ;
12
+ 'The `ID` scalar type represents a unique identifier, often used to
13
+ refetch an object or as key for a cache. The ID type appears in a JSON
14
+ response as a String; however, it is not intended to be human-readable.
15
+ When expected as an input type, any string (such as `"4"`) or integer
16
+ (such as `4`) input value will be accepted as an ID. ' ;
17
17
18
18
public function serialize ($ value )
19
19
{
Original file line number Diff line number Diff line change @@ -17,8 +17,8 @@ class IntType extends ScalarType
17
17
public $ name = Type::INT ;
18
18
19
19
public $ description =
20
- 'The `Int` scalar type represents non-fractional signed whole numeric ' .
21
- ' values. Int can represent values between -(2^31) and 2^31 - 1. ' ;
20
+ 'The `Int` scalar type represents non-fractional signed whole numeric
21
+ values. Int can represent values between -(2^31) and 2^31 - 1. ' ;
22
22
23
23
public function serialize ($ value )
24
24
{
Original file line number Diff line number Diff line change @@ -8,9 +8,9 @@ class StringType extends ScalarType
8
8
public $ name = Type::STRING ;
9
9
10
10
public $ description =
11
- 'The `String` scalar type represents textual data, represented as UTF-8 ' .
12
- ' character sequences. The String type is most often used by GraphQL to ' .
13
- ' represent free-form human-readable text. ' ;
11
+ 'The `String` scalar type represents textual data, represented as UTF-8
12
+ character sequences. The String type is most often used by GraphQL to
13
+ represent free-form human-readable text. ' ;
14
14
15
15
public function serialize ($ value )
16
16
{
You can’t perform that action at this time.
0 commit comments