Merge pull request #211 from enumag/patch-2

indentation fix
This commit is contained in:
Vladimir Razuvaev 2017-12-13 14:24:29 +07:00 committed by GitHub
commit a3f18b51f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,21 +3,21 @@ namespace GraphQL\Tests\Type;
class ObjectIdStub class ObjectIdStub
{ {
/** /**
* @var int * @var int
*/ */
private $id; private $id;
/** /**
* @param int $id * @param int $id
*/ */
public function __construct($id) public function __construct($id)
{ {
$this->id = $id; $this->id = $id;
} }
public function __toString() public function __toString()
{ {
return (string) $this->id; return (string) $this->id;
} }
} }