Skip to content
Open
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
7 changes: 6 additions & 1 deletion http_cache/cache_vary.rst
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,13 @@ attribute::
// ...
#[Cache(vary: ['Accept-Encoding'])]
public function foo(): Response
{
// ...
}
#[Cache(vary: ['Accept-Encoding', 'User-Agent'])]
public function index(): Response
public function bar(): Response
{
// ...
}
Expand Down