mirror of
https://github.com/silverstripe/silverstripe-fulltextsearch
synced 2024-10-22 14:05:29 +02:00
Remedy deprecated dynamic variable declaration (#354)
Co-authored-by: Michal Kleiner <mk@011.nz>
This commit is contained in:
parent
cf24b84ad1
commit
49a829f7c9
@ -10,6 +10,19 @@ namespace SilverStripe\FullTextSearch\Solr\Stores;
|
||||
*/
|
||||
class SolrConfigStore_File implements SolrConfigStore
|
||||
{
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $remote;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $local;
|
||||
|
||||
/**
|
||||
* @param array $config
|
||||
*/
|
||||
public function __construct($config)
|
||||
{
|
||||
$this->local = $config['path'];
|
||||
|
@ -12,6 +12,19 @@ use SilverStripe\FullTextSearch\Utils\WebDAV;
|
||||
*/
|
||||
class SolrConfigStore_WebDAV implements SolrConfigStore
|
||||
{
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $remote;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $url;
|
||||
|
||||
/**
|
||||
* @param array $config
|
||||
*/
|
||||
public function __construct($config)
|
||||
{
|
||||
$options = Solr::solr_options();
|
||||
|
Loading…
Reference in New Issue
Block a user