mirror of
https://github.com/silverstripe/silverstripe-fulltextsearch
synced 2024-10-22 14:05:29 +02:00
19 lines
452 B
PHP
19 lines
452 B
PHP
<?php
|
|
|
|
namespace SilverStripe\FullTextSearch\Tests\Solr4ServiceTest;
|
|
|
|
use SilverStripe\FullTextSearch\Solr\Services\Solr4Service_Core;
|
|
|
|
class Solr4ServiceTest_RecordingService extends Solr4Service_Core
|
|
{
|
|
protected function _sendRawPost($url, $rawPost, $timeout = false, $contentType = 'text/xml; charset=UTF-8')
|
|
{
|
|
return $rawPost;
|
|
}
|
|
|
|
protected function _sendRawGet($url, $timeout = false)
|
|
{
|
|
return $url;
|
|
}
|
|
}
|