diff options
author | Dhruv <dhruv.goel92@gmail.com> | 2012-08-14 23:54:46 +0530 |
---|---|---|
committer | Dhruv <dhruv.goel92@gmail.com> | 2012-11-09 15:54:32 +0100 |
commit | 3dc42c67d3d0870e47ecf98abfa885262bcf962d (patch) | |
tree | c4a40a0616927030773874be761d1c80e88cdf84 /phpBB | |
parent | 4172a9d797a707ba728f3d21e8241e74e882c5af (diff) | |
download | forums-3dc42c67d3d0870e47ecf98abfa885262bcf962d.tar forums-3dc42c67d3d0870e47ecf98abfa885262bcf962d.tar.gz forums-3dc42c67d3d0870e47ecf98abfa885262bcf962d.tar.bz2 forums-3dc42c67d3d0870e47ecf98abfa885262bcf962d.tar.xz forums-3dc42c67d3d0870e47ecf98abfa885262bcf962d.zip |
[ticket/11050] fix docblocks with description before @var
PHPBB3-11050
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/includes/search/fulltext_mysql.php | 9 | ||||
-rw-r--r-- | phpBB/includes/search/fulltext_postgres.php | 9 | ||||
-rw-r--r-- | phpBB/includes/search/fulltext_sphinx.php | 21 |
3 files changed, 26 insertions, 13 deletions
diff --git a/phpBB/includes/search/fulltext_mysql.php b/phpBB/includes/search/fulltext_mysql.php index a1c9101bc1..98df301082 100644 --- a/phpBB/includes/search/fulltext_mysql.php +++ b/phpBB/includes/search/fulltext_mysql.php @@ -35,17 +35,20 @@ class phpbb_search_fulltext_mysql extends phpbb_search_base protected $split_words = array(); /** - * @var phpbb_config Config class object + * Config class object + * @var phpbb_config */ protected $config; /** - * @var dbal DBAL class object + * DBAL class object + * @var dbal */ protected $db; /** - * @var user User class object + * User class object + * @var user */ protected $user; diff --git a/phpBB/includes/search/fulltext_postgres.php b/phpBB/includes/search/fulltext_postgres.php index ab4864bacc..a41307a3a4 100644 --- a/phpBB/includes/search/fulltext_postgres.php +++ b/phpBB/includes/search/fulltext_postgres.php @@ -60,17 +60,20 @@ class phpbb_search_fulltext_postgres extends phpbb_search_base protected $phrase_search = false; /** - * @var phpbb_config Config class object + * Config class object + * @var phpbb_config */ protected $config; /** - * @var dbal DBAL class object + * DBAL class object + * @var dbal */ protected $db; /** - * @var user User class object + * User class object + * @var user */ protected $user; diff --git a/phpBB/includes/search/fulltext_sphinx.php b/phpBB/includes/search/fulltext_sphinx.php index e20231517a..20752df1c2 100644 --- a/phpBB/includes/search/fulltext_sphinx.php +++ b/phpBB/includes/search/fulltext_sphinx.php @@ -60,32 +60,38 @@ class phpbb_search_fulltext_sphinx protected $sphinx; /** - * @var string Relative path to board root + * Relative path to board root + * @var string */ protected $phpbb_root_path; /** - * @var string PHP Extension + * PHP Extension + * @var string */ protected $php_ext; /** - * @var phpbb_auth Auth class object + * Auth class object + * @var phpbb_auth */ protected $auth; /** - * @var phpbb_config Config class object + * Config class object + * @var phpbb_config */ protected $config; /** - * @var dbal DBAL class object + * DBAL class object + * @var dbal */ protected $db; /** - * @var phpbb_db_tools Database Tools class object + * Database Tools class object + * @var phpbb_db_tools */ protected $db_tools; @@ -96,7 +102,8 @@ class phpbb_search_fulltext_sphinx protected $dbtype; /** - * @var user User class object + * User class object + * @var user */ protected $user; |