silverstripe-framework/search/filters/PartialMatchSearchFilter.php

11 lines
182 B
PHP
Raw Normal View History

<?php
/**
* Matches textual content with a LIKE '%keyword%' construct.
*
* @package sapphire
* @subpackage search
*/
class PartialMatchSearchFilter extends SearchFilter {
}
?>