-
Notifications
You must be signed in to change notification settings - Fork 541
Fix empty regex and empty alternation parse #3507
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
c55994e
29cc941
103ea0c
993be4c
0c222fb
5281a8c
0a8a6b2
f40aae6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -100,12 +100,48 @@ public function dataValidate(): array | |
false, | ||
false, | ||
], | ||
[ | ||
'~(a\()~', | ||
[], | ||
false, | ||
false, | ||
], | ||
[ | ||
'~b\\\()~', | ||
[], | ||
false, | ||
true, | ||
], | ||
[ | ||
'~(c\\\\\()~', | ||
[], | ||
false, | ||
false, | ||
], | ||
[ | ||
'~Result of || is always true.~', | ||
[], | ||
false, | ||
true, | ||
], | ||
[ | ||
'~a\||~', | ||
[], | ||
false, | ||
false, | ||
|
||
], | ||
[ | ||
'~b\\\||~', | ||
[], | ||
false, | ||
true, | ||
], | ||
[ | ||
'~c\\\\\||~', | ||
[], | ||
false, | ||
false, | ||
], | ||
[ | ||
'#Method PragmaRX\Notified\Data\Repositories\Notified::firstOrCreateByEvent() should return PragmaRX\Notified\Data\Models\Notified but returns Illuminate\Database\Eloquent\Model|null#', | ||
[], | ||
|
Uh oh!
There was an error while loading. Please reload this page.