We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4153a7 commit 5b33724Copy full SHA for 5b33724
1 file changed
Core/src/Testing/Reflection/DescriptionFactory.php
@@ -126,8 +126,9 @@ private function lex(string $contents): array
126
127
return Utils::pregSplit(
128
'/\{
129
- # "{@}" is not a valid inline tag. This ensures that we do not treat it as one, but treat it literally.
130
- (?!@\})
+ # "{@}" and "{@*}" are not a valid inline tags. This ensures that we do not treat them as one, but treat
+ # them literally.
131
+ (?!(?:@\}|@\*\}) )
132
# We want to capture the whole tag line, but without the inline tag delimiters.
133
(\@
134
# Match everything up to the next delimiter.
0 commit comments