Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php declare (strict_types=1); namespace Rector\DowngradePhp74\Rector\Property; use Php..
Decoded Output download
<?php
declare (strict_types=1);
namespace Rector\DowngradePhp74\Rector\Property;
use PhpParser\Node;
use PhpParser\Node\Expr;
use PhpParser\Node\NullableType;
use PhpParser\Node\Stmt\Property;
use Rector\NodeManipulator\PropertyDecorator;
use Rector\PhpParser\Node\Value\ValueResolver;
use Rector\Rector\AbstractRector;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
/**
* @see \Rector\Tests\DowngradePhp74\Rector\Property\DowngradeTypedPropertyRector\DowngradeTypedPropertyRectorTest
*/
final class DowngradeTypedPropertyRector extends AbstractRector
{
/**
* @readonly
* @var \Rector\NodeManipulator\PropertyDecorator
*/
private $propertyDecorator;
/**
* @readonly
* @var \Rector\PhpParser\Node\Value\ValueResolver
*/
private $valueResolver;
public function __construct(PropertyDecorator $propertyDecorator, ValueResolver $valueResolver)
{
$this->propertyDecorator = $propertyDecorator;
$this->valueResolver = $valueResolver;
}
/**
* @return array<class-string<Node>>
*/
public function getNodeTypes() : array
{
return [Property::class];
}
public function getRuleDefinition() : RuleDefinition
{
return new RuleDefinition('Changes property type definition from type definitions to `@var` annotations.', [new CodeSample(<<<'CODE_SAMPLE'
class SomeClass
{
private string $property;
}
CODE_SAMPLE
, <<<'CODE_SAMPLE'
class SomeClass
{
/**
* @var string
*/
private $property;
}
CODE_SAMPLE
)]);
}
/**
* @param Property $node
*/
public function refactor(Node $node) : ?Node
{
if ($node->type === null) {
return null;
}
$default = $node->props[0]->default;
if ($node->type instanceof NullableType && $default instanceof Expr && $this->valueResolver->isNull($default)) {
$node->props[0]->default = null;
}
$this->propertyDecorator->decorateWithDocBlock($node, $node->type);
$node->type = null;
return $node;
}
}
?>
Did this file decode correctly?
Original Code
<?php
declare (strict_types=1);
namespace Rector\DowngradePhp74\Rector\Property;
use PhpParser\Node;
use PhpParser\Node\Expr;
use PhpParser\Node\NullableType;
use PhpParser\Node\Stmt\Property;
use Rector\NodeManipulator\PropertyDecorator;
use Rector\PhpParser\Node\Value\ValueResolver;
use Rector\Rector\AbstractRector;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
/**
* @see \Rector\Tests\DowngradePhp74\Rector\Property\DowngradeTypedPropertyRector\DowngradeTypedPropertyRectorTest
*/
final class DowngradeTypedPropertyRector extends AbstractRector
{
/**
* @readonly
* @var \Rector\NodeManipulator\PropertyDecorator
*/
private $propertyDecorator;
/**
* @readonly
* @var \Rector\PhpParser\Node\Value\ValueResolver
*/
private $valueResolver;
public function __construct(PropertyDecorator $propertyDecorator, ValueResolver $valueResolver)
{
$this->propertyDecorator = $propertyDecorator;
$this->valueResolver = $valueResolver;
}
/**
* @return array<class-string<Node>>
*/
public function getNodeTypes() : array
{
return [Property::class];
}
public function getRuleDefinition() : RuleDefinition
{
return new RuleDefinition('Changes property type definition from type definitions to `@var` annotations.', [new CodeSample(<<<'CODE_SAMPLE'
class SomeClass
{
private string $property;
}
CODE_SAMPLE
, <<<'CODE_SAMPLE'
class SomeClass
{
/**
* @var string
*/
private $property;
}
CODE_SAMPLE
)]);
}
/**
* @param Property $node
*/
public function refactor(Node $node) : ?Node
{
if ($node->type === null) {
return null;
}
$default = $node->props[0]->default;
if ($node->type instanceof NullableType && $default instanceof Expr && $this->valueResolver->isNull($default)) {
$node->props[0]->default = null;
}
$this->propertyDecorator->decorateWithDocBlock($node, $node->type);
$node->type = null;
return $node;
}
}
Function Calls
None |
Stats
MD5 | e8cb78c8a14bf919b3fa783a00d8ca1d |
Eval Count | 0 |
Decode Time | 79 ms |