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\DowngradePhp80\Rector\MethodCall; use P..
Decoded Output download
<?php
declare (strict_types=1);
namespace Rector\DowngradePhp80\Rector\MethodCall;
use PhpParser\Node;
use PhpParser\Node\Arg;
use PhpParser\Node\Expr\FuncCall;
use PhpParser\Node\Expr\MethodCall;
use PhpParser\Node\Expr\New_;
use PhpParser\Node\Expr\StaticCall;
use PHPStan\Reflection\FunctionReflection;
use PHPStan\Reflection\MethodReflection;
use Rector\DowngradePhp80\NodeAnalyzer\UnnamedArgumentResolver;
use Rector\NodeAnalyzer\ArgsAnalyzer;
use Rector\Rector\AbstractRector;
use Rector\Reflection\ReflectionResolver;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
/**
* @see \Rector\Tests\DowngradePhp80\Rector\MethodCall\DowngradeNamedArgumentRector\DowngradeNamedArgumentRectorTest
*/
final class DowngradeNamedArgumentRector extends AbstractRector
{
/**
* @readonly
* @var \Rector\Reflection\ReflectionResolver
*/
private $reflectionResolver;
/**
* @readonly
* @var \Rector\DowngradePhp80\NodeAnalyzer\UnnamedArgumentResolver
*/
private $unnamedArgumentResolver;
/**
* @readonly
* @var \Rector\NodeAnalyzer\ArgsAnalyzer
*/
private $argsAnalyzer;
public function __construct(ReflectionResolver $reflectionResolver, UnnamedArgumentResolver $unnamedArgumentResolver, ArgsAnalyzer $argsAnalyzer)
{
$this->reflectionResolver = $reflectionResolver;
$this->unnamedArgumentResolver = $unnamedArgumentResolver;
$this->argsAnalyzer = $argsAnalyzer;
}
/**
* @return array<class-string<Node>>
*/
public function getNodeTypes() : array
{
return [MethodCall::class, StaticCall::class, New_::class, FuncCall::class];
}
public function getRuleDefinition() : RuleDefinition
{
return new RuleDefinition('Remove named argument', [new CodeSample(<<<'CODE_SAMPLE'
class SomeClass
{
public function run()
{
$this->execute(b: 100);
}
private function execute($a = null, $b = null)
{
}
}
CODE_SAMPLE
, <<<'CODE_SAMPLE'
class SomeClass
{
public function run()
{
$this->execute(null, 100);
}
private function execute($a = null, $b = null)
{
}
}
CODE_SAMPLE
)]);
}
/**
* @param MethodCall|StaticCall|New_|FuncCall $node
*/
public function refactor(Node $node) : ?Node
{
$args = $node->getArgs();
if ($this->shouldSkip($args)) {
return null;
}
return $this->removeNamedArguments($node, $args);
}
/**
* @param Arg[] $args
* @param \PhpParser\Node\Expr\MethodCall|\PhpParser\Node\Expr\StaticCall|\PhpParser\Node\Expr\New_|\PhpParser\Node\Expr\FuncCall $node
*/
private function removeNamedArguments($node, array $args) : ?Node
{
if ($node instanceof New_) {
$functionLikeReflection = $this->reflectionResolver->resolveMethodReflectionFromNew($node);
} else {
$functionLikeReflection = $this->reflectionResolver->resolveFunctionLikeReflectionFromCall($node);
}
if (!$functionLikeReflection instanceof MethodReflection && !$functionLikeReflection instanceof FunctionReflection) {
return null;
}
$node->args = $this->unnamedArgumentResolver->resolveFromReflection($functionLikeReflection, $args);
return $node;
}
/**
* @param mixed[]|Arg[] $args
*/
private function shouldSkip(array $args) : bool
{
return !$this->argsAnalyzer->hasNamedArg($args);
}
}
?>
Did this file decode correctly?
Original Code
<?php
declare (strict_types=1);
namespace Rector\DowngradePhp80\Rector\MethodCall;
use PhpParser\Node;
use PhpParser\Node\Arg;
use PhpParser\Node\Expr\FuncCall;
use PhpParser\Node\Expr\MethodCall;
use PhpParser\Node\Expr\New_;
use PhpParser\Node\Expr\StaticCall;
use PHPStan\Reflection\FunctionReflection;
use PHPStan\Reflection\MethodReflection;
use Rector\DowngradePhp80\NodeAnalyzer\UnnamedArgumentResolver;
use Rector\NodeAnalyzer\ArgsAnalyzer;
use Rector\Rector\AbstractRector;
use Rector\Reflection\ReflectionResolver;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
/**
* @see \Rector\Tests\DowngradePhp80\Rector\MethodCall\DowngradeNamedArgumentRector\DowngradeNamedArgumentRectorTest
*/
final class DowngradeNamedArgumentRector extends AbstractRector
{
/**
* @readonly
* @var \Rector\Reflection\ReflectionResolver
*/
private $reflectionResolver;
/**
* @readonly
* @var \Rector\DowngradePhp80\NodeAnalyzer\UnnamedArgumentResolver
*/
private $unnamedArgumentResolver;
/**
* @readonly
* @var \Rector\NodeAnalyzer\ArgsAnalyzer
*/
private $argsAnalyzer;
public function __construct(ReflectionResolver $reflectionResolver, UnnamedArgumentResolver $unnamedArgumentResolver, ArgsAnalyzer $argsAnalyzer)
{
$this->reflectionResolver = $reflectionResolver;
$this->unnamedArgumentResolver = $unnamedArgumentResolver;
$this->argsAnalyzer = $argsAnalyzer;
}
/**
* @return array<class-string<Node>>
*/
public function getNodeTypes() : array
{
return [MethodCall::class, StaticCall::class, New_::class, FuncCall::class];
}
public function getRuleDefinition() : RuleDefinition
{
return new RuleDefinition('Remove named argument', [new CodeSample(<<<'CODE_SAMPLE'
class SomeClass
{
public function run()
{
$this->execute(b: 100);
}
private function execute($a = null, $b = null)
{
}
}
CODE_SAMPLE
, <<<'CODE_SAMPLE'
class SomeClass
{
public function run()
{
$this->execute(null, 100);
}
private function execute($a = null, $b = null)
{
}
}
CODE_SAMPLE
)]);
}
/**
* @param MethodCall|StaticCall|New_|FuncCall $node
*/
public function refactor(Node $node) : ?Node
{
$args = $node->getArgs();
if ($this->shouldSkip($args)) {
return null;
}
return $this->removeNamedArguments($node, $args);
}
/**
* @param Arg[] $args
* @param \PhpParser\Node\Expr\MethodCall|\PhpParser\Node\Expr\StaticCall|\PhpParser\Node\Expr\New_|\PhpParser\Node\Expr\FuncCall $node
*/
private function removeNamedArguments($node, array $args) : ?Node
{
if ($node instanceof New_) {
$functionLikeReflection = $this->reflectionResolver->resolveMethodReflectionFromNew($node);
} else {
$functionLikeReflection = $this->reflectionResolver->resolveFunctionLikeReflectionFromCall($node);
}
if (!$functionLikeReflection instanceof MethodReflection && !$functionLikeReflection instanceof FunctionReflection) {
return null;
}
$node->args = $this->unnamedArgumentResolver->resolveFromReflection($functionLikeReflection, $args);
return $node;
}
/**
* @param mixed[]|Arg[] $args
*/
private function shouldSkip(array $args) : bool
{
return !$this->argsAnalyzer->hasNamedArg($args);
}
}
Function Calls
| None |
Stats
| MD5 | ad2fb7f463ab75e303477f8194079516 |
| Eval Count | 0 |
| Decode Time | 93 ms |