diff --git a/src/Concerns/InteractsWithCookies.php b/src/Concerns/InteractsWithCookies.php index e7304e2d5..856d752e1 100644 --- a/src/Concerns/InteractsWithCookies.php +++ b/src/Concerns/InteractsWithCookies.php @@ -34,7 +34,7 @@ public function cookie($name, $value = null, $expiry = null, array $options = [] } /** - * Get or set a plain cookie's value. + * Get or set an unencrypted cookie's value. * * @param string $name * @param string|null $value diff --git a/src/Concerns/MakesAssertions.php b/src/Concerns/MakesAssertions.php index 0e17b8ad0..b7f51f2c2 100644 --- a/src/Concerns/MakesAssertions.php +++ b/src/Concerns/MakesAssertions.php @@ -42,7 +42,7 @@ public function assertTitleContains($title) } /** - * Assert that the given cookie is present. + * Assert that the given encrypted cookie is present. * * @param string $name * @param bool $decrypt @@ -61,7 +61,7 @@ public function assertHasCookie($name, $decrypt = true) } /** - * Assert that the given plain cookie is present. + * Assert that the given unencrypted cookie is present. * * @param string $name * @return $this @@ -72,7 +72,7 @@ public function assertHasPlainCookie($name) } /** - * Assert that the given cookie is not present. + * Assert that the given encrypted cookie is not present. * * @param string $name * @param bool $decrypt @@ -91,7 +91,7 @@ public function assertCookieMissing($name, $decrypt = true) } /** - * Assert that the given plain cookie is not present. + * Assert that the given unencrypted cookie is not present. * * @param string $name * @return $this @@ -122,7 +122,7 @@ public function assertCookieValue($name, $value, $decrypt = true) } /** - * Assert that a cookie has a given value. + * Assert that an unencrypted cookie has a given value. * * @param string $name * @param string $value