diff options
Diffstat (limited to 'phpBB/includes')
-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; |