Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Concerns/InteractsWithCookies.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 5 additions & 5 deletions src/Concerns/MakesAssertions.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down