1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-24 03:54:10 +01:00

[ticket/11054] Fixed documentation syntax for @var in extension/controller.php

PHPBB3-11054
This commit is contained in:
David King 2012-08-14 09:57:17 -04:00
parent 64ff06cf87
commit fe579cac83

View File

@ -23,37 +23,44 @@ if (!defined('IN_PHPBB'))
abstract class phpbb_extension_controller implements phpbb_extension_controller_interface
{
/**
* @var phpbb_request Request class object
* Request class object
* @var phpbb_request
*/
protected $request;
/**
* @var dbal DBAL class object
* DBAL class object
* @var dbal
*/
protected $db;
/**
* @var user User class object
* User class object
* @var user
*/
protected $user;
/**
* @var phpbb_template Template class object
* Template class object
* @var phpbb_template
*/
protected $template;
/**
* @var array Config array
* Config array
* @var array
*/
protected $config;
/**
* @var string PHP Extension
* PHP Extension
* @var string
*/
protected $php_ext;
/**
* @var string Relative path to board root
* Relative path to board root
* @var string
*/
protected $phpbb_root_path;