We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b6744b commit adce7d9Copy full SHA for adce7d9
rules/CodeQuality/Rector/ClassMethod/BehatPHPUnitAssertToWebmozartRector.php
@@ -71,6 +71,7 @@ final class BehatPHPUnitAssertToWebmozartRector extends AbstractRector
71
'assertStringEndsWith' => 'endsWith',
72
'assertStringEndsNotWith' => 'notEndsWith',
73
'assertMatchesRegularExpression' => 'regex',
74
+ 'assertDoesNotMatchRegularExpression' => 'notRegex',
75
76
// Bool
77
'assertNotTrue' => 'false',
@@ -110,6 +111,7 @@ final class BehatPHPUnitAssertToWebmozartRector extends AbstractRector
110
111
'assertStringContainsString',
112
'assertStringStartsWith',
113
'assertMatchesRegularExpression',
114
+ 'assertDoesNotMatchRegularExpression',
115
];
116
117
public function __construct(
0 commit comments