diff options
author | Frédéric Guillot <fguillot@users.noreply.github.com> | 2014-05-03 22:44:00 -0400 |
---|---|---|
committer | Frédéric Guillot <fguillot@users.noreply.github.com> | 2014-05-03 22:44:00 -0400 |
commit | 8ab4c38373932a3f40c4810cf88c278a2f478976 (patch) | |
tree | af36edb9f5f4539c9b56ff3881364ea3f2ac5fbc /controllers/base.php | |
parent | 560a12f0bd6347a335f8ed5201d6d9562d03d4bc (diff) |
Remove some warnings for Scrutinizer-ci
Diffstat (limited to 'controllers/base.php')
-rw-r--r-- | controllers/base.php | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/controllers/base.php b/controllers/base.php index 6b5555c4..b4f438c3 100644 --- a/controllers/base.php +++ b/controllers/base.php @@ -11,6 +11,38 @@ namespace Controller; abstract class Base { /** + * Request instance + * + * @accesss public + * @var \Core\Request + */ + public $request; + + /** + * Response instance + * + * @accesss public + * @var \Core\Response + */ + public $response; + + /** + * Template instance + * + * @accesss public + * @var \Core\Template + */ + public $template; + + /** + * Session instance + * + * @accesss public + * @var \Core\Session + */ + public $session; + + /** * Acl model * * @accesss protected |