mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-09-06 10:00:58 +00:00
declare class variables
This commit is contained in:
parent
0c2f3c651a
commit
a194b7bc5b
|
@ -1408,6 +1408,8 @@ class SeedDMS_Search { /* {{{ */
|
|||
|
||||
public $searchparams;
|
||||
|
||||
protected $total;
|
||||
|
||||
protected $dcount;
|
||||
|
||||
protected $fcount;
|
||||
|
@ -1420,6 +1422,8 @@ class SeedDMS_Search { /* {{{ */
|
|||
|
||||
protected $searchTime;
|
||||
|
||||
protected $facets;
|
||||
|
||||
public function __construct($dms, $user, $fulltextservice, $settings) {
|
||||
$this->dms = $dms;
|
||||
$this->user = $user;
|
||||
|
@ -1428,6 +1432,7 @@ class SeedDMS_Search { /* {{{ */
|
|||
$this->searchparams = [];
|
||||
$this->dcount = 0;
|
||||
$this->fcount = 0;
|
||||
$this->total = 0;
|
||||
$this->totalPages = 0;
|
||||
$this->entries = array();
|
||||
$this->terms = array();
|
||||
|
|
Loading…
Reference in New Issue
Block a user