| 1 | <?php |
||
| 12 | abstract class RegexpBuilder |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * Create a regexp pattern that matches a list of words |
||
| 16 | * |
||
| 17 | * @param array $words Words to sort (must be UTF-8) |
||
| 18 | * @param array $options |
||
| 19 | * @return string |
||
| 20 | */ |
||
| 21 | 73 | public static function fromList(array $words, array $options = []) |
|
| 49 | } |