Formatting changes and updating class references from strings to use php ::class const
This commit is contained in:
@ -8,8 +8,8 @@ class SimpleSearchDriver extends BaseSearchDriver
|
||||
* @var array
|
||||
*/
|
||||
protected $matchers = [
|
||||
'TomLingham\Searchy\Matchers\ExactMatcher' => 100,
|
||||
'TomLingham\Searchy\Matchers\StartOfStringMatcher' => 50,
|
||||
'TomLingham\Searchy\Matchers\InStringMatcher' => 30,
|
||||
\TomLingham\Searchy\Matchers\ExactMatcher::class => 100,
|
||||
\TomLingham\Searchy\Matchers\StartOfStringMatcher::class => 50,
|
||||
\TomLingham\Searchy\Matchers\InStringMatcher::class => 30,
|
||||
];
|
||||
}
|
||||
|
Reference in New Issue
Block a user