| 1 | <?php |
||
| 13 | class RegexConfig extends MatchConfig |
||
| 14 | { |
||
| 15 | const OPTION_PATTERN = 'pattern'; |
||
| 16 | const OPTION_MODIFIERS = 'modifiers'; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @param string $className |
||
| 20 | * @param array $arguments |
||
| 21 | * @return RegexMatch |
||
| 22 | */ |
||
| 23 | protected function getObject(string $className, array $arguments) |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @param RegexMatch $item |
||
| 30 | * @return array |
||
| 31 | */ |
||
| 32 | protected function getArray($item): array |
||
| 40 | |||
| 41 | protected function config() |
||
| 50 | } |
||
| 51 |