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