Change AbstractRequest to ActionDispatch::Request

AbstractRequest has been deprecated, updating to refer to ActionDispatch::Request instead.

[ci skip]
This commit is contained in:
Bradley D 2015-09-17 16:37:03 -06:00 committed by defektive
parent 61f9e47fea
commit 119f38f795
1 changed files with 1 additions and 1 deletions

View File

@ -810,7 +810,7 @@ The [Security Guide](security.html) has more about this and a lot of other secur
The Request and Response Objects
--------------------------------
In every controller there are two accessor methods pointing to the request and the response objects associated with the request cycle that is currently in execution. The `request` method contains an instance of `AbstractRequest` and the `response` method returns a response object representing what is going to be sent back to the client.
In every controller there are two accessor methods pointing to the request and the response objects associated with the request cycle that is currently in execution. The `request` method contains an instance of `ActionDispatch::Request` and the `response` method returns a response object representing what is going to be sent back to the client.
### The `request` Object