for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types = 1);
/**
* Created by PhpStorm.
* User: gordon
* Date: 25/3/2561
* Time: 17:01 น.
*/
namespace Suilven\FreeTextSearch\Factory;
use SilverStripe\Core\Injector\Injector;
use Suilven\FreeTextSearch\Interfaces\Indexer;
class IndexerFactory
{
public function getIndexer(): Indexer
return Injector::inst()->get('FreeTextIndexerImplementation');
}