I've inherited a Symfony app and have come across some syntax I've not encountered before:
$data = $request->request->all();
The $request is a HttpFoundation request object. There is no all() method in the class. The result of the statement is an array w/ all the fields from a submitted form.
So how do I read the the statement? What does the "->request->" mean?