[ticket/11050] add missing @var in native search

PHPBB3-11050
This commit is contained in:
Dhruv 2012-08-16 00:09:35 +05:30
parent 8eed3591a9
commit 1ded6d94ac

View file

@ -49,16 +49,19 @@ class phpbb_search_fulltext_native extends phpbb_search_base
/** /**
* Post ids of posts containing words that are to be included * Post ids of posts containing words that are to be included
* @var array
*/ */
protected $must_contain_ids = array(); protected $must_contain_ids = array();
/** /**
* Post ids of posts containing words that should not be included * Post ids of posts containing words that should not be included
* @var array
*/ */
protected $must_not_contain_ids = array(); protected $must_not_contain_ids = array();
/** /**
* Post ids of posts containing atleast one word that needs to be excluded * Post ids of posts containing atleast one word that needs to be excluded
* @var array
*/ */
protected $must_exclude_one_ids = array(); protected $must_exclude_one_ids = array();