Skip to content

Commit

Permalink
Update docblocks.
Browse files Browse the repository at this point in the history
  • Loading branch information
ADmad committed May 2, 2018
1 parent b7cfe84 commit 0131004
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/View/View.php
Expand Up @@ -206,15 +206,15 @@ class View implements EventDispatcherInterface
* additional information about the request.
*
* @var \Cake\Http\ServerRequest
* @deprecated 3.6.3 The property will become protected in 4.0.0. Use getRequest()/setRequest() instead.
* @deprecated 3.7.0 The property will become protected in 4.0.0. Use getRequest()/setRequest() instead.
*/
public $request;

/**
* Reference to the Response object
*
* @var \Cake\Http\Response
* @deprecated 3.6.3 The property will become protected in 4.0.0. Use getResponse()/setResponse() instead.
* @deprecated 3.7.0 The property will become protected in 4.0.0. Use getResponse()/setResponse() instead.
*/
public $response;

Expand Down Expand Up @@ -392,7 +392,7 @@ public function initialize()
* Gets the request instance.
*
* @return \Cake\Http\ServerRequest
* @since 3.6.3
* @since 3.7.0
*/
public function getRequest()
{
Expand All @@ -409,7 +409,7 @@ public function getRequest()
*
* @param \Cake\Http\ServerRequest $request Request instance.
* @return $this
* @since 3.6.3
* @since 3.7.0
*/
public function setRequest(ServerRequest $request)
{
Expand All @@ -427,7 +427,7 @@ public function setRequest(ServerRequest $request)
* Gets the response instance.
*
* @return \Cake\Http\Response
* @since 3.6.3
* @since 3.7.0
*/
public function getResponse()
{
Expand All @@ -439,7 +439,7 @@ public function getResponse()
*
* @param \Cake\Http\Response $response Response instance.
* @return $this
* @since 3.6.3
* @since 3.7.0
*/
public function setResponse(Response $response)
{
Expand Down

0 comments on commit 0131004

Please sign in to comment.