mirror of
https://github.com/silverstripe/silverstripe-fulltextsearch
synced 2024-10-22 14:05:29 +02:00
13 lines
259 B
PHP
13 lines
259 B
PHP
|
<?php
|
||
|
|
||
|
namespace SilverStripe\FullTextSearch\Solr\Services;
|
||
|
|
||
|
use \Apache_Solr_Service;
|
||
|
|
||
|
/**
|
||
|
* The API for accessing a specific core of a Solr server. Exactly the same as Apache_Solr_Service for now.
|
||
|
*/
|
||
|
class SolrService_Core extends Apache_Solr_Service
|
||
|
{
|
||
|
}
|