diff --git a/src/Illuminate/Testing/TestResponse.php b/src/Illuminate/Testing/TestResponse.php index 316cc0f8ca44..fc0ec71f55c6 100644 --- a/src/Illuminate/Testing/TestResponse.php +++ b/src/Illuminate/Testing/TestResponse.php @@ -574,7 +574,7 @@ public function assertSee($value, $escape = true) /** * Assert that the given HTML string or array of HTML strings are contained within the response. * - * @param string|array $value + * @param array|string $value * @return $this */ public function assertSeeHtml($value) @@ -670,7 +670,7 @@ public function assertDontSee($value, $escape = true) /** * Assert that the given HTML string or array of HTML strings are not contained within the response. * - * @param string|array $value + * @param array|string $value * @return $this */ public function assertDontSeeHtml($value)