Skip to content

Commit

Permalink
Fix doc blocks for auto complete
Browse files Browse the repository at this point in the history
  • Loading branch information
dereuromark committed Oct 21, 2016
1 parent 46b0ecf commit e52cb7a
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion src/Controller/Component.php
Expand Up @@ -65,7 +65,7 @@ class Component implements EventListenerInterface
/**
* Request object
*
* @var \Cake\Network\Request
* @var \Cake\Http\ServerRequest
*/
public $request;

Expand Down
2 changes: 1 addition & 1 deletion src/Controller/Component/SecurityComponent.php
Expand Up @@ -87,7 +87,7 @@ class SecurityComponent extends Component
/**
* Request object
*
* @var \Cake\Network\Request
* @var \Cake\Http\ServerRequest
*/
public $request;

Expand Down
2 changes: 1 addition & 1 deletion src/Controller/Controller.php
Expand Up @@ -122,7 +122,7 @@ class Controller implements EventListenerInterface, EventDispatcherInterface
* This object contains all the information about a request and several methods for reading
* additional information about the request.
*
* @var \Cake\Network\Request
* @var \Cake\Http\ServerRequest
* @link http://book.cakephp.org/3.0/en/controllers/request-response.html#request
*/
public $request;
Expand Down
2 changes: 1 addition & 1 deletion src/View/Cell.php
Expand Up @@ -70,7 +70,7 @@ abstract class Cell
* This object contains all the information about a request and several methods for reading
* additional information about the request.
*
* @var \Cake\Network\Request
* @var \Cake\Http\ServerRequest
*/
public $request;

Expand Down
2 changes: 1 addition & 1 deletion src/View/Form/ArrayContext.php
Expand Up @@ -63,7 +63,7 @@ class ArrayContext implements ContextInterface
/**
* The request object.
*
* @var \Cake\Network\Request
* @var \Cake\Http\ServerRequest
*/
protected $_request;

Expand Down
2 changes: 1 addition & 1 deletion src/View/Form/EntityContext.php
Expand Up @@ -48,7 +48,7 @@ class EntityContext implements ContextInterface
/**
* The request object.
*
* @var \Cake\Network\Request
* @var \Cake\Http\ServerRequest
*/
protected $_request;

Expand Down
2 changes: 1 addition & 1 deletion src/View/Form/FormContext.php
Expand Up @@ -29,7 +29,7 @@ class FormContext implements ContextInterface
/**
* The request object.
*
* @var \Cake\Network\Request
* @var \Cake\Http\ServerRequest
*/
protected $_request;

Expand Down
2 changes: 1 addition & 1 deletion src/View/Form/NullContext.php
Expand Up @@ -28,7 +28,7 @@ class NullContext implements ContextInterface
/**
* The request object.
*
* @var \Cake\Network\Request
* @var \Cake\Http\ServerRequest
*/
protected $_request;

Expand Down
2 changes: 1 addition & 1 deletion src/View/Helper.php
Expand Up @@ -74,7 +74,7 @@ class Helper implements EventListenerInterface
/**
* Request object
*
* @var \Cake\Network\Request
* @var \Cake\Http\ServerRequest
*/
public $request = null;

Expand Down
2 changes: 1 addition & 1 deletion src/View/View.php
Expand Up @@ -200,7 +200,7 @@ class View implements EventDispatcherInterface
* This object contains all the information about a request and several methods for reading
* additional information about the request.
*
* @var \Cake\Network\Request
* @var \Cake\Http\ServerRequest
*/
public $request;

Expand Down
2 changes: 1 addition & 1 deletion tests/test_app/TestApp/View/Cell/ArticlesCell.php
Expand Up @@ -29,7 +29,7 @@ class ArticlesCell extends \Cake\View\Cell
/**
* Counter used to test the cache cell feature
*
* @return void
* @var int
*/
public $counter = 0;

Expand Down

0 comments on commit e52cb7a

Please sign in to comment.