indentation

This commit is contained in:
Jáchym Toušek 2017-12-12 13:36:20 +01:00
parent 9e2c1dae87
commit f6c3fe3758
No known key found for this signature in database
GPG Key ID: BE4BDA55F5F9FBAD

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;
} }
} }