You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
416 B
15 lines
416 B
<?php
|
|
|
|
namespace TomLingham\Searchy\SearchDrivers;
|
|
|
|
class SimpleSearchDriver extends BaseSearchDriver
|
|
{
|
|
/**
|
|
* @var array
|
|
*/
|
|
protected $matchers = [
|
|
\TomLingham\Searchy\Matchers\ExactMatcher::class => 100,
|
|
\TomLingham\Searchy\Matchers\StartOfStringMatcher::class => 50,
|
|
\TomLingham\Searchy\Matchers\InStringMatcher::class => 30,
|
|
];
|
|
}
|