| 1 | <?php |
||
| 14 | class RegexNavigationItem extends NavigationItem implements RegexableItem, ManualMatch |
||
| 15 | { |
||
| 16 | use ManualMatchExtension; |
||
| 17 | |||
| 18 | /** @var string */ |
||
| 19 | private $regexPattern; |
||
| 20 | /** @var string */ |
||
| 21 | private $regexModifiers; |
||
| 22 | |||
| 23 | public function __construct( |
||
| 41 | |||
| 42 | public function getRegexPattern(): string |
||
| 46 | |||
| 47 | public function getRegexModifiers(): string |
||
| 51 | |||
| 52 | public function getPattern(): string |
||
| 56 | } |
||
| 57 |