From e52cb7a23b8f589f1832000811b0bf42039e14b4 Mon Sep 17 00:00:00 2001 From: dereuromark Date: Sat, 22 Oct 2016 01:59:27 +0200 Subject: [PATCH] Fix doc blocks for auto complete --- src/Controller/Component.php | 2 +- src/Controller/Component/SecurityComponent.php | 2 +- src/Controller/Controller.php | 2 +- src/View/Cell.php | 2 +- src/View/Form/ArrayContext.php | 2 +- src/View/Form/EntityContext.php | 2 +- src/View/Form/FormContext.php | 2 +- src/View/Form/NullContext.php | 2 +- src/View/Helper.php | 2 +- src/View/View.php | 2 +- tests/test_app/TestApp/View/Cell/ArticlesCell.php | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/src/Controller/Component.php b/src/Controller/Component.php index 869c650056e..54a2831caf2 100644 --- a/src/Controller/Component.php +++ b/src/Controller/Component.php @@ -65,7 +65,7 @@ class Component implements EventListenerInterface /** * Request object * - * @var \Cake\Network\Request + * @var \Cake\Http\ServerRequest */ public $request; diff --git a/src/Controller/Component/SecurityComponent.php b/src/Controller/Component/SecurityComponent.php index fa8a6e73d9b..d29078befa1 100644 --- a/src/Controller/Component/SecurityComponent.php +++ b/src/Controller/Component/SecurityComponent.php @@ -87,7 +87,7 @@ class SecurityComponent extends Component /** * Request object * - * @var \Cake\Network\Request + * @var \Cake\Http\ServerRequest */ public $request; diff --git a/src/Controller/Controller.php b/src/Controller/Controller.php index aba9ac12245..39ce5aeeff9 100644 --- a/src/Controller/Controller.php +++ b/src/Controller/Controller.php @@ -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; diff --git a/src/View/Cell.php b/src/View/Cell.php index b9b4a1ad17b..f0c4d7f0bb8 100644 --- a/src/View/Cell.php +++ b/src/View/Cell.php @@ -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; diff --git a/src/View/Form/ArrayContext.php b/src/View/Form/ArrayContext.php index 246ee50179b..94340d1303f 100644 --- a/src/View/Form/ArrayContext.php +++ b/src/View/Form/ArrayContext.php @@ -63,7 +63,7 @@ class ArrayContext implements ContextInterface /** * The request object. * - * @var \Cake\Network\Request + * @var \Cake\Http\ServerRequest */ protected $_request; diff --git a/src/View/Form/EntityContext.php b/src/View/Form/EntityContext.php index c0ac721acc6..0f37a82c0de 100644 --- a/src/View/Form/EntityContext.php +++ b/src/View/Form/EntityContext.php @@ -48,7 +48,7 @@ class EntityContext implements ContextInterface /** * The request object. * - * @var \Cake\Network\Request + * @var \Cake\Http\ServerRequest */ protected $_request; diff --git a/src/View/Form/FormContext.php b/src/View/Form/FormContext.php index 3cb72d48188..22e05227e38 100644 --- a/src/View/Form/FormContext.php +++ b/src/View/Form/FormContext.php @@ -29,7 +29,7 @@ class FormContext implements ContextInterface /** * The request object. * - * @var \Cake\Network\Request + * @var \Cake\Http\ServerRequest */ protected $_request; diff --git a/src/View/Form/NullContext.php b/src/View/Form/NullContext.php index 2ff17978207..7000d7be70b 100644 --- a/src/View/Form/NullContext.php +++ b/src/View/Form/NullContext.php @@ -28,7 +28,7 @@ class NullContext implements ContextInterface /** * The request object. * - * @var \Cake\Network\Request + * @var \Cake\Http\ServerRequest */ protected $_request; diff --git a/src/View/Helper.php b/src/View/Helper.php index 185d30f036a..a8041f179a7 100644 --- a/src/View/Helper.php +++ b/src/View/Helper.php @@ -74,7 +74,7 @@ class Helper implements EventListenerInterface /** * Request object * - * @var \Cake\Network\Request + * @var \Cake\Http\ServerRequest */ public $request = null; diff --git a/src/View/View.php b/src/View/View.php index 9079dbc09f9..f925e166e2e 100644 --- a/src/View/View.php +++ b/src/View/View.php @@ -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; diff --git a/tests/test_app/TestApp/View/Cell/ArticlesCell.php b/tests/test_app/TestApp/View/Cell/ArticlesCell.php index 88dd1e85f01..375fdf0a0b8 100644 --- a/tests/test_app/TestApp/View/Cell/ArticlesCell.php +++ b/tests/test_app/TestApp/View/Cell/ArticlesCell.php @@ -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;