We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a17e69 commit dd4024fCopy full SHA for dd4024f
1 file changed
rector.php
@@ -42,6 +42,7 @@
42
use Rector\Php71\Rector\FuncCall\CountOnNullRector;
43
use Rector\Php73\Rector\FuncCall\JsonThrowOnErrorRector;
44
use Rector\Php73\Rector\FuncCall\StringifyStrNeedlesRector;
45
+use Rector\PHPUnit\Rector\MethodCall\AssertFalseStrposToContainsRector;
46
use Rector\PHPUnit\Rector\MethodCall\AssertIssetToSpecificMethodRector;
47
use Rector\PHPUnit\Set\PHPUnitSetList;
48
use Rector\Set\ValueObject\LevelSetList;
@@ -121,6 +122,9 @@
121
122
__DIR__ . '/tests/system/Entity/EntityTest.php',
123
__DIR__ . '/tests/system/Session/SessionTest.php',
124
],
125
+
126
+ // assertContains() to string can't be used in PHPUnit 9.1
127
+ AssertFalseStrposToContainsRector::class,
128
]);
129
130
// auto import fully qualified class names
0 commit comments