mirror of
https://github.com/retailcrm/graphql-php.git
synced 2024-11-22 04:46:04 +03:00
Merge pull request #303 from theofidry/bugfix/stringeable-object
Allow stringeable objects to be serialized by StringType
This commit is contained in:
commit
17392e05dd
@ -40,6 +40,9 @@ represent free-form human-readable text.';
|
||||
if ($value === null) {
|
||||
return 'null';
|
||||
}
|
||||
if (is_object($value) && method_exists($value, '__toString')) {
|
||||
return (string) $value;
|
||||
}
|
||||
if (!is_scalar($value)) {
|
||||
throw new Error("String cannot represent non scalar value: " . Utils::printSafe($value));
|
||||
}
|
||||
|
@ -150,6 +150,7 @@ class ScalarSerializationTest extends \PHPUnit_Framework_TestCase
|
||||
$this->assertSame('true', $stringType->serialize(true));
|
||||
$this->assertSame('false', $stringType->serialize(false));
|
||||
$this->assertSame('null', $stringType->serialize(null));
|
||||
$this->assertSame('2', $stringType->serialize(new ObjectIdStub(2)));
|
||||
}
|
||||
|
||||
public function testSerializesOutputStringsCannotRepresentArray()
|
||||
|
Loading…
Reference in New Issue
Block a user