Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Services/Search/Sphinxsearch.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@ class Sphinxsearch
/**
* @var string $host
*/
private $host;
protected $host;

/**
* @var string $port
*/
private $port;
protected $port;

/**
* @var string $socket
*/
private $socket;
protected $socket;

/**
* @var array $indexes
Expand All @@ -29,12 +29,12 @@ class Sphinxsearch
* ...,
* );
*/
private $indexes;
protected $indexes;

/**
* @var SphinxClient $sphinx
*/
private $sphinx;
protected $sphinx;

/**
* Constructor.
Expand Down