Files
laravel-searchy/src/SearchDrivers/SimpleSearchDriver.php

16 lines
374 B
PHP
Raw Normal View History

<?php
namespace TomLingham\Searchy\SearchDrivers;
class SimpleSearchDriver extends BaseSearchDriver
{
/**
* @var array
*/
protected $matchers = [
'TomLingham\Searchy\Matchers\ExactMatcher' => 100,
'TomLingham\Searchy\Matchers\StartOfStringMatcher' => 50,
'TomLingham\Searchy\Matchers\InStringMatcher' => 30,
];
}