mirror of
https://github.com/silverstripe/silverstripe-fulltextsearch
synced 2024-10-22 14:05:29 +02:00
12 lines
214 B
PHP
12 lines
214 B
PHP
<?php
|
|
|
|
namespace SilverStripe\FullTextSearch\Search\Processors;
|
|
|
|
class SearchUpdateImmediateProcessor extends SearchUpdateProcessor
|
|
{
|
|
public function triggerProcessing()
|
|
{
|
|
$this->process();
|
|
}
|
|
}
|