[ticket/11050] fix min/max length docblock language

PHPBB3-11050
This commit is contained in:
Dhruv 2012-08-20 00:58:41 +05:30
parent 7c3cbc07cf
commit 0556959a6a
3 changed files with 3 additions and 3 deletions

View file

@ -53,7 +53,7 @@ class phpbb_search_fulltext_mysql extends phpbb_search_base
protected $user; protected $user;
/** /**
* Associative array stores the min and max length * Associative array stores the min and max word length to be searched
* @var array * @var array
*/ */
public $word_length = array(); public $word_length = array();

View file

@ -29,7 +29,7 @@ class phpbb_search_fulltext_native extends phpbb_search_base
protected $stats = array(); protected $stats = array();
/** /**
* Associative array stores the min and max length * Associative array stores the min and max word length to be searched
* @var array * @var array
*/ */
public $word_length = array(); public $word_length = array();

View file

@ -91,7 +91,7 @@ class phpbb_search_fulltext_postgres extends phpbb_search_base
public $common_words = array(); public $common_words = array();
/** /**
* Associative array stores the min and max length * Associative array stores the min and max word length to be searched
* @var array * @var array
*/ */
public $word_length = array(); public $word_length = array();