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
{
/**
* @var int
*/
private $id;
/**
* @var int
*/
private $id;
/**
* @param int $id
*/
public function __construct($id)
{
$this->id = $id;
}
/**
* @param int $id
*/
public function __construct($id)
{
$this->id = $id;
}
public function __toString()
{
return (string) $this->id;
}
public function __toString()
{
return (string) $this->id;
}
}