diff --git a/src/Solr/Stores/SolrConfigStore_File.php b/src/Solr/Stores/SolrConfigStore_File.php index beecc38c..0d764606 100644 --- a/src/Solr/Stores/SolrConfigStore_File.php +++ b/src/Solr/Stores/SolrConfigStore_File.php @@ -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']; diff --git a/src/Solr/Stores/SolrConfigStore_WebDAV.php b/src/Solr/Stores/SolrConfigStore_WebDAV.php index 272913f7..dff94b0a 100644 --- a/src/Solr/Stores/SolrConfigStore_WebDAV.php +++ b/src/Solr/Stores/SolrConfigStore_WebDAV.php @@ -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();