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