From f6c3fe3758b185c5b484f5ae4e71b05913ca8296 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A1chym=20Tou=C5=A1ek?= Date: Tue, 12 Dec 2017 13:36:20 +0100 Subject: [PATCH] indentation --- tests/Type/ObjectIdStub.php | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/tests/Type/ObjectIdStub.php b/tests/Type/ObjectIdStub.php index 5379591..b0453ab 100644 --- a/tests/Type/ObjectIdStub.php +++ b/tests/Type/ObjectIdStub.php @@ -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; + } }