From 31818bd9c74b34cb97a07260a9231c3e75952432 Mon Sep 17 00:00:00 2001 From: Simon Podlipsky Date: Tue, 12 Nov 2024 11:51:02 +0100 Subject: [PATCH 1/2] break cs --- tests/Utils/CoerceInputValueTest.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tests/Utils/CoerceInputValueTest.php b/tests/Utils/CoerceInputValueTest.php index 082ce59ef..cd61f63c5 100644 --- a/tests/Utils/CoerceInputValueTest.php +++ b/tests/Utils/CoerceInputValueTest.php @@ -216,8 +216,11 @@ public function isClientSafe(): bool */ public function testReturnsNoErrorForAValidInput($input): void { - $result = Value::coerceInputValue($input, $this->testInputObject); - $this->expectGraphQLValue($result, ['foo' => 123]); + + $result = Value::coerceInputValue( + $input, $this->testInputObject, + ); + $this->expectGraphQLValue($result, [ 'foo' => 123]); } /** @return iterable */ From fda9942fa04ea591c3824b0e8b2ce800389c119a Mon Sep 17 00:00:00 2001 From: simPod Date: Tue, 12 Nov 2024 10:52:12 +0000 Subject: [PATCH 2/2] Apply php-cs-fixer changes --- tests/Utils/CoerceInputValueTest.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/Utils/CoerceInputValueTest.php b/tests/Utils/CoerceInputValueTest.php index cd61f63c5..cc8f6eeba 100644 --- a/tests/Utils/CoerceInputValueTest.php +++ b/tests/Utils/CoerceInputValueTest.php @@ -216,11 +216,11 @@ public function isClientSafe(): bool */ public function testReturnsNoErrorForAValidInput($input): void { - - $result = Value::coerceInputValue( - $input, $this->testInputObject, + $result = Value::coerceInputValue( + $input, + $this->testInputObject, ); - $this->expectGraphQLValue($result, [ 'foo' => 123]); + $this->expectGraphQLValue($result, ['foo' => 123]); } /** @return iterable */