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\DowngradePhp73\Rector\FuncCall; use Php..
Decoded Output download
<?php
declare (strict_types=1);
namespace Rector\DowngradePhp73\Rector\FuncCall;
use PhpParser\Node;
use PhpParser\Node\Expr\FuncCall;
use PhpParser\Node\Expr\MethodCall;
use PhpParser\Node\Expr\New_;
use PhpParser\Node\Expr\StaticCall;
use Rector\DowngradePhp73\Tokenizer\FollowedByCommaAnalyzer;
use Rector\NodeTypeResolver\Node\AttributeKey;
use Rector\Rector\AbstractRector;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
/**
* @see \Rector\Tests\DowngradePhp73\Rector\FuncCall\DowngradeTrailingCommasInFunctionCallsRector\DowngradeTrailingCommasInFunctionCallsRectorTest
*/
final class DowngradeTrailingCommasInFunctionCallsRector extends AbstractRector
{
/**
* @readonly
* @var \Rector\DowngradePhp73\Tokenizer\FollowedByCommaAnalyzer
*/
private $followedByCommaAnalyzer;
public function __construct(FollowedByCommaAnalyzer $followedByCommaAnalyzer)
{
$this->followedByCommaAnalyzer = $followedByCommaAnalyzer;
}
public function getRuleDefinition() : RuleDefinition
{
return new RuleDefinition('Remove trailing commas in function calls', [new CodeSample(<<<'CODE_SAMPLE'
class SomeClass
{
public function __construct(string $value)
{
$compacted = compact(
'posts',
'units',
);
}
}
CODE_SAMPLE
, <<<'CODE_SAMPLE'
class SomeClass
{
public function __construct(string $value)
{
$compacted = compact(
'posts',
'units'
);
}
}
CODE_SAMPLE
)]);
}
/**
* @return array<class-string<Node>>
*/
public function getNodeTypes() : array
{
return [FuncCall::class, MethodCall::class, StaticCall::class, New_::class];
}
/**
* @param FuncCall|MethodCall|StaticCall|New_ $node
*/
public function refactor(Node $node) : ?Node
{
if ($node->isFirstClassCallable()) {
return null;
}
$args = $node->getArgs();
if ($args === []) {
return null;
}
$lastArgKey = \count($args) - 1;
$lastArg = $args[$lastArgKey];
if (!$this->followedByCommaAnalyzer->isFollowed($this->file, $lastArg)) {
return null;
}
// remove comma
$lastArg->setAttribute(AttributeKey::FUNC_ARGS_TRAILING_COMMA, \false);
$node->setAttribute(AttributeKey::ORIGINAL_NODE, null);
return $node;
}
}
?>
Did this file decode correctly?
Original Code
<?php
declare (strict_types=1);
namespace Rector\DowngradePhp73\Rector\FuncCall;
use PhpParser\Node;
use PhpParser\Node\Expr\FuncCall;
use PhpParser\Node\Expr\MethodCall;
use PhpParser\Node\Expr\New_;
use PhpParser\Node\Expr\StaticCall;
use Rector\DowngradePhp73\Tokenizer\FollowedByCommaAnalyzer;
use Rector\NodeTypeResolver\Node\AttributeKey;
use Rector\Rector\AbstractRector;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
/**
* @see \Rector\Tests\DowngradePhp73\Rector\FuncCall\DowngradeTrailingCommasInFunctionCallsRector\DowngradeTrailingCommasInFunctionCallsRectorTest
*/
final class DowngradeTrailingCommasInFunctionCallsRector extends AbstractRector
{
/**
* @readonly
* @var \Rector\DowngradePhp73\Tokenizer\FollowedByCommaAnalyzer
*/
private $followedByCommaAnalyzer;
public function __construct(FollowedByCommaAnalyzer $followedByCommaAnalyzer)
{
$this->followedByCommaAnalyzer = $followedByCommaAnalyzer;
}
public function getRuleDefinition() : RuleDefinition
{
return new RuleDefinition('Remove trailing commas in function calls', [new CodeSample(<<<'CODE_SAMPLE'
class SomeClass
{
public function __construct(string $value)
{
$compacted = compact(
'posts',
'units',
);
}
}
CODE_SAMPLE
, <<<'CODE_SAMPLE'
class SomeClass
{
public function __construct(string $value)
{
$compacted = compact(
'posts',
'units'
);
}
}
CODE_SAMPLE
)]);
}
/**
* @return array<class-string<Node>>
*/
public function getNodeTypes() : array
{
return [FuncCall::class, MethodCall::class, StaticCall::class, New_::class];
}
/**
* @param FuncCall|MethodCall|StaticCall|New_ $node
*/
public function refactor(Node $node) : ?Node
{
if ($node->isFirstClassCallable()) {
return null;
}
$args = $node->getArgs();
if ($args === []) {
return null;
}
$lastArgKey = \count($args) - 1;
$lastArg = $args[$lastArgKey];
if (!$this->followedByCommaAnalyzer->isFollowed($this->file, $lastArg)) {
return null;
}
// remove comma
$lastArg->setAttribute(AttributeKey::FUNC_ARGS_TRAILING_COMMA, \false);
$node->setAttribute(AttributeKey::ORIGINAL_NODE, null);
return $node;
}
}
Function Calls
None |
Stats
MD5 | f640d7741556dafecac6a42a2a200793 |
Eval Count | 0 |
Decode Time | 85 ms |