You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tests/PHPStan/Command/IgnoredRegexValidatorTest.php
+36Lines changed: 36 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -100,12 +100,48 @@ public function dataValidate(): array
100
100
false,
101
101
false,
102
102
],
103
+
[
104
+
'~(a\()~',
105
+
[],
106
+
false,
107
+
false,
108
+
],
109
+
[
110
+
'~b\\\()~',
111
+
[],
112
+
false,
113
+
true,
114
+
],
115
+
[
116
+
'~(c\\\\\()~',
117
+
[],
118
+
false,
119
+
false,
120
+
],
103
121
[
104
122
'~Result of || is always true.~',
105
123
[],
106
124
false,
107
125
true,
108
126
],
127
+
[
128
+
'~a\||~',
129
+
[],
130
+
false,
131
+
false,
132
+
],
133
+
[
134
+
'~b\\\||~',
135
+
[],
136
+
false,
137
+
true,
138
+
],
139
+
[
140
+
'~c\\\\\||~',
141
+
[],
142
+
false,
143
+
false,
144
+
],
109
145
[
110
146
'#Method PragmaRX\Notified\Data\Repositories\Notified::firstOrCreateByEvent() should return PragmaRX\Notified\Data\Models\Notified but returns Illuminate\Database\Eloquent\Model|null#',
0 commit comments