Skip to content

[HttpFoundation] Add info for getAcceptableFormats() method #9898

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Changes from 1 commit
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
Prev Previous commit
[HttpFoundation] Adds more info about getAcceptableFormats method
  • Loading branch information
Andrei Igna committed Jun 9, 2018
commit 8140b80c49c149989d78109a420ffa7c0469b04c
12 changes: 12 additions & 0 deletions components/http_foundation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -293,6 +293,18 @@ by using the following methods:
:method:`Symfony\\Component\\HttpFoundation\\Request::getAcceptableFormats`
Returns the list of accepted client formats associated with the request.

Note that
:method:`Symfony\\Component\\HttpFoundation\\Request::getAcceptableFormats`
will use the data from
:method:`Symfony\\Component\\HttpFoundation\\Request::getAcceptableContentTypes`
and return the client acceptable formats::

$request->getAcceptableContentTypes();
// returns ['text/html', 'application/xhtml+xml', 'application/xml', '*/*']

$request->getAcceptableFormats();
// returns ['html', 'xml']

:method:`Symfony\\Component\\HttpFoundation\\Request::getLanguages`
Returns the list of accepted languages ordered by descending quality.

Expand Down