* "abcdefg" => "defg" # true * "abcdefg" => "abcd" # false * */ class EndsWithFilter extends PartialMatchFilter { protected function getMatchPattern($value) { return "%$value"; } }