Skip to content

Commit

Permalink
Merge branch '4.0' into 4
Browse files Browse the repository at this point in the history
  • Loading branch information
emteknetnz committed Mar 26, 2024
2 parents 0f62997 + e50b75c commit 1dc17a7
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 1 deletion.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"monolog/monolog": "^3.2",
"silverstripe/solr-php-client": "^1",
"symfony/process": "^6.2",
"silverstripe/silverstripe-proxy-db": "^2",
"tractorcow/silverstripe-proxy-db": "^2",
"ext-curl": "*"
},
"require-dev": {
Expand Down
13 changes: 13 additions & 0 deletions src/Solr/Stores/SolrConfigStore_File.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,19 @@
*/
class SolrConfigStore_File implements SolrConfigStore
{
/**
* @var string
*/
public $remote;

/**
* @var string
*/
public $local;

/**
* @param array $config
*/
public function __construct($config)
{
$this->local = $config['path'];
Expand Down
13 changes: 13 additions & 0 deletions src/Solr/Stores/SolrConfigStore_WebDAV.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,19 @@
*/
class SolrConfigStore_WebDAV implements SolrConfigStore
{
/**
* @var string
*/
public $remote;

/**
* @var string
*/
public $url;

/**
* @param array $config
*/
public function __construct($config)
{
$options = Solr::solr_options();
Expand Down

0 comments on commit 1dc17a7

Please sign in to comment.