diff --git a/src/Solr/Stores/SolrConfigStore_File.php b/src/Solr/Stores/SolrConfigStore_File.php index beecc38..0d76460 100644 --- a/src/Solr/Stores/SolrConfigStore_File.php +++ b/src/Solr/Stores/SolrConfigStore_File.php @@ -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']; diff --git a/src/Solr/Stores/SolrConfigStore_WebDAV.php b/src/Solr/Stores/SolrConfigStore_WebDAV.php index 272913f..dff94b0 100644 --- a/src/Solr/Stores/SolrConfigStore_WebDAV.php +++ b/src/Solr/Stores/SolrConfigStore_WebDAV.php @@ -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();