Hi everyone,
I very often see people using $this->request
, even on the (relatively) recent Stackoverflow posts (e.g. here, here).
However, seeing where things have been going with the mass deprecation because of the get/set prefix addition since 3.4 and 3.6, do I feel right that one should move to $this->getRequest()
instead of $this->request
as well?
The reason I’m asking is because I called $this->request->getRequestTarget()
on my 3.8 and it didn’t show me any deprecation warnings in the debug panel (while I thought it would).