1 2 3 4 5 6 7 8 9 10 11 12
<?php namespace amekusa\phio; main::required; /** * @author amekusa <post@amekusa.com> */ class RegexFilter extends Filter { public function matches($File) { return preg_match($this->pattern, (string) $File); } }