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.

19 lines
517 B

  1. <?php namespace TomLingham\Searchy\Matchers;
  2. /**
  3. * Matches an exact string and applies a high multiplier to bring any exact matches to the top
  4. * When sanitize is on, if the expression strips some of the characters from the search query
  5. * then this may not be able to match against a string despite entering in an exact match.
  6. *
  7. * Class ExactMatcher
  8. * @package TomLingham\Searchy\Matchers
  9. */
  10. class ExactMatcher extends BaseMatcher
  11. {
  12. /**
  13. * @var string
  14. */
  15. protected $operator = '=';
  16. }