[Downgrade PHP 8.1] Add DowngradeReadonlyPropertyRector (#1262)

This commit is contained in:
Fabien Villepinte 2021-11-18 20:04:50 +01:00 committed by GitHub
parent 1258576514
commit 587d8d8058
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
12 changed files with 314 additions and 3 deletions

View File

@ -1,3 +1,6 @@
parameters:
phpVersion: 80100
services:
defaultAnalysisParser:
factory: @cachedRectorParser

View File

@ -8,6 +8,7 @@ use Rector\DowngradePhp81\Rector\ClassConst\DowngradeFinalizePublicClassConstant
use Rector\DowngradePhp81\Rector\FuncCall\DowngradeFirstClassCallableSyntaxRector;
use Rector\DowngradePhp81\Rector\FunctionLike\DowngradeNeverTypeDeclarationRector;
use Rector\DowngradePhp81\Rector\Instanceof_\DowngradePhp81ResourceReturnToObjectRector;
use Rector\DowngradePhp81\Rector\Property\DowngradeReadonlyPropertyRector;
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
return static function (ContainerConfigurator $containerConfigurator): void {
@ -19,4 +20,5 @@ return static function (ContainerConfigurator $containerConfigurator): void {
$services->set(DowngradeFirstClassCallableSyntaxRector::class);
$services->set(DowngradeNeverTypeDeclarationRector::class);
$services->set(DowngradePhp81ResourceReturnToObjectRector::class);
$services->set(DowngradeReadonlyPropertyRector::class);
};

View File

@ -0,0 +1,33 @@
<?php
declare(strict_types=1);
namespace Rector\Tests\DowngradePhp81\Rector\Property\DowngradeReadonlyPropertyRector;
use Iterator;
use Rector\Testing\PHPUnit\AbstractRectorTestCase;
use Symplify\SmartFileSystem\SmartFileInfo;
final class DowngradeReadonlyPropertyRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideData()
*/
public function test(SmartFileInfo $fileInfo): void
{
$this->doTestFileInfo($fileInfo);
}
/**
* @return Iterator<SmartFileInfo>
*/
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}
public function provideConfigFilePath(): string
{
return __DIR__ . '/config/configured_rule.php';
}
}

View File

@ -0,0 +1,34 @@
<?php
namespace Rector\Tests\DowngradePhp81\Rector\Property\DowngradeReadonlyPropertyRector\Fixture;
class SomeClass
{
public readonly string $foo;
public function __construct()
{
$this->foo = 'foo';
}
}
?>
-----
<?php
namespace Rector\Tests\DowngradePhp81\Rector\Property\DowngradeReadonlyPropertyRector\Fixture;
class SomeClass
{
/**
* @readonly
*/
public string $foo;
public function __construct()
{
$this->foo = 'foo';
}
}
?>

View File

@ -0,0 +1,38 @@
<?php
namespace Rector\Tests\DowngradePhp81\Rector\Property\DowngradeReadonlyPropertyRector\Fixture;
class SomeClass
{
/**
* Property comment.
*/
public readonly string $foo;
public function __construct()
{
$this->foo = 'foo';
}
}
?>
-----
<?php
namespace Rector\Tests\DowngradePhp81\Rector\Property\DowngradeReadonlyPropertyRector\Fixture;
class SomeClass
{
/**
* Property comment.
* @readonly
*/
public string $foo;
public function __construct()
{
$this->foo = 'foo';
}
}
?>

View File

@ -0,0 +1,39 @@
<?php
namespace Rector\Tests\DowngradePhp81\Rector\Property\DowngradeReadonlyPropertyRector\Fixture;
class SomeClass
{
/**
* Property comment.
* @readonly
*/
public readonly string $foo;
public function __construct()
{
$this->foo = 'foo';
}
}
?>
-----
<?php
namespace Rector\Tests\DowngradePhp81\Rector\Property\DowngradeReadonlyPropertyRector\Fixture;
class SomeClass
{
/**
* Property comment.
* @readonly
*/
public string $foo;
public function __construct()
{
$this->foo = 'foo';
}
}
?>

View File

@ -0,0 +1,29 @@
<?php
namespace Rector\Tests\DowngradePhp81\Rector\Property\DowngradeReadonlyPropertyRector\Fixture;
class SomeClass
{
public function __construct(
public readonly string $foo = 'foo'
)
{
}
}
?>
-----
<?php
namespace Rector\Tests\DowngradePhp81\Rector\Property\DowngradeReadonlyPropertyRector\Fixture;
class SomeClass
{
public function __construct(
public string $foo = 'foo'
)
{
}
}
?>

View File

@ -0,0 +1,11 @@
<?php
declare(strict_types=1);
use Rector\DowngradePhp81\Rector\Property\DowngradeReadonlyPropertyRector;
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
return static function (ContainerConfigurator $containerConfigurator): void {
$services = $containerConfigurator->services();
$services->set(DowngradeReadonlyPropertyRector::class);
};

View File

@ -0,0 +1,101 @@
<?php
declare(strict_types=1);
namespace Rector\DowngradePhp81\Rector\Property;
use PhpParser\Node;
use PhpParser\Node\Param;
use PhpParser\Node\Stmt\Property;
use PHPStan\PhpDocParser\Ast\PhpDoc\GenericTagValueNode;
use PHPStan\PhpDocParser\Ast\PhpDoc\PhpDocTagNode;
use Rector\Core\Rector\AbstractRector;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
/**
* @changelog https://wiki.php.net/rfc/readonly_properties_v2
*
* @see \Rector\Tests\DowngradePhp81\Rector\Property\DowngradeReadonlyPropertyRector\DowngradeReadonlyPropertyRectorTest
*/
final class DowngradeReadonlyPropertyRector extends AbstractRector
{
/**
* @var string
*/
private const TAGNAME = 'readonly';
/**
* @return array<class-string<Node>>
*/
public function getNodeTypes(): array
{
return [Property::class, Param::class];
}
public function getRuleDefinition(): RuleDefinition
{
return new RuleDefinition(
'Remove "readonly" property type, add a "@readonly" tag instead',
[
new CodeSample(
<<<'CODE_SAMPLE'
class SomeClass
{
public readonly string $foo;
public function __construct()
{
$this->foo = 'foo';
}
}
CODE_SAMPLE
,
<<<'CODE_SAMPLE'
class SomeClass
{
/**
* @readonly
*/
public string $foo;
public function __construct()
{
$this->foo = 'foo';
}
}
CODE_SAMPLE
),
]
);
}
/**
* @param Property|Param $node
*/
public function refactor(Node $node): ?Node
{
if (! $this->visibilityManipulator->isReadonly($node)) {
return null;
}
if ($node instanceof Property) {
$this->addPhpDocTag($node);
}
$this->visibilityManipulator->removeReadonly($node);
return $node;
}
private function addPhpDocTag(Property $property): void
{
$phpDocInfo = $this->phpDocInfoFactory->createFromNodeOrEmpty($property);
if ($phpDocInfo->hasByName(self::TAGNAME)) {
return;
}
$phpDocInfo->addPhpDocTagNode(new PhpDocTagNode('@' . self::TAGNAME, new GenericTagValueNode('')));
}
}

View File

@ -6,7 +6,6 @@ namespace Rector\Php81\Rector\Property;
use PhpParser\Node;
use PhpParser\Node\Param;
use PhpParser\Node\Stmt\Class_;
use PhpParser\Node\Stmt\Property;
use Rector\Core\NodeManipulator\PropertyManipulator;
use Rector\Core\Rector\AbstractRector;
@ -111,7 +110,7 @@ CODE_SAMPLE
return null;
}
if ($this->visibilityManipulator->hasVisibility($param, Class_::MODIFIER_READONLY)) {
if ($this->visibilityManipulator->isReadonly($param)) {
return null;
}

View File

@ -116,7 +116,17 @@ final class VisibilityManipulator
public function makeReadonly(Property | Param $node): void
{
$this->addVisibilityFlag($node, Class_::MODIFIER_READONLY);
$this->addVisibilityFlag($node, Visibility::READONLY);
}
public function isReadonly(Property | Param $node): bool
{
return $this->hasVisibility($node, Visibility::READONLY);
}
public function removeReadonly(Property | Param $node): void
{
$this->removeVisibilityFlag($node, Visibility::READONLY);
}
private function addVisibilityFlag(
@ -126,6 +136,13 @@ final class VisibilityManipulator
$node->flags |= $visibility;
}
private function removeVisibilityFlag(
Class_ | ClassMethod | Property | ClassConst | Param $node,
int $visibility
): void {
$node->flags &= ~$visibility;
}
private function replaceVisibilityFlag(ClassMethod | Property | ClassConst $node, int $visibility): void
{
$isStatic = $node instanceof ClassMethod && $node->isStatic();

View File

@ -37,4 +37,9 @@ final class Visibility
* @var int
*/
public const FINAL = Class_::MODIFIER_FINAL;
/**
* @var int
*/
public const READONLY = Class_::MODIFIER_READONLY;
}