mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-12 20:56:40 +02:00
[ticket/11050] add missing @var in native search
PHPBB3-11050
This commit is contained in:
@ -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();
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user