From ab2968d9dc1d49ff0db8d0203799078b5204e2e3 Mon Sep 17 00:00:00 2001 From: Marshall Davis Date: Wed, 10 Nov 2021 15:41:55 -0500 Subject: [PATCH] Correct styling of PHPDoc. Remove extra blank line between paramters and return annotation. --- src/Illuminate/Testing/TestResponse.php | 1 - tests/Testing/TestResponseTest.php | 3 ++- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Illuminate/Testing/TestResponse.php b/src/Illuminate/Testing/TestResponse.php index 7658b062d982..89e66123089a 100644 --- a/src/Illuminate/Testing/TestResponse.php +++ b/src/Illuminate/Testing/TestResponse.php @@ -867,7 +867,6 @@ public function assertJsonValidationErrors($errors, $responseKey = 'errors') * * @param string $key * @param string $responseKey - * * @return $this */ public function assertJsonValidationErrorFor($key, $responseKey = 'errors') diff --git a/tests/Testing/TestResponseTest.php b/tests/Testing/TestResponseTest.php index 151d84cf5a12..32e3d556a329 100644 --- a/tests/Testing/TestResponseTest.php +++ b/tests/Testing/TestResponseTest.php @@ -50,7 +50,8 @@ public function testAssertViewHas() public function testAssertViewHasModel() { - $model = new class extends Model { + $model = new class extends Model + { public function is($model) { return $this == $model;