We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8461519 commit b5355a4Copy full SHA for b5355a4
1 file changed
rector.php
@@ -40,6 +40,7 @@
40
use Rector\Php71\Rector\FuncCall\CountOnNullRector;
41
use Rector\Php73\Rector\FuncCall\JsonThrowOnErrorRector;
42
use Rector\Php73\Rector\FuncCall\StringifyStrNeedlesRector;
43
+use Rector\PHPUnit\Rector\MethodCall\AssertPropertyExistsRector;
44
use Rector\PHPUnit\Rector\MethodCall\GetMockBuilderGetMockToCreateMockRector;
45
use Rector\PHPUnit\Set\PHPUnitSetList;
46
use Rector\Privatization\Rector\Property\PrivatizeFinalClassPropertyRector;
@@ -80,6 +81,8 @@
80
81
__DIR__ . '/tests/_support',
82
JsonThrowOnErrorRector::class,
83
StringifyStrNeedlesRector::class,
84
+ // assertObjectHasAttribute() is deprecated
85
+ AssertPropertyExistsRector::class,
86
87
RemoveUnusedPrivateMethodRector::class => [
88
// private method called via getPrivateMethodInvoker
0 commit comments