REDROOM
PHP 8.2.31
Path:
Logout
Edit File
Size: 2.01 KB
Close
//opt/cpanel/ea-wappspector/vendor/rector/rector/rules/Php54/Rector/FuncCall/RemoveReferenceFromCallRector.php
Text
Base64
<?php declare (strict_types=1); namespace Rector\Php54\Rector\FuncCall; use PhpParser\Node; use PhpParser\Node\Arg; use PhpParser\Node\Expr\FuncCall; use PhpParser\Node\Expr\MethodCall; use PhpParser\Node\Expr\StaticCall; use Rector\Rector\AbstractRector; use Rector\ValueObject\PhpVersionFeature; use Rector\VersionBonding\Contract\MinPhpVersionInterface; use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample; use Symplify\RuleDocGenerator\ValueObject\RuleDefinition; /** * @see \Rector\Tests\Php54\Rector\FuncCall\RemoveReferenceFromCallRector\RemoveReferenceFromCallRectorTest */ final class RemoveReferenceFromCallRector extends AbstractRector implements MinPhpVersionInterface { public function provideMinPhpVersion() : int { return PhpVersionFeature::NO_REFERENCE_IN_ARG; } public function getRuleDefinition() : RuleDefinition { return new RuleDefinition('Remove & from function and method calls', [new CodeSample(<<<'CODE_SAMPLE' final class SomeClass { public function run($one) { return strlen(&$one); } } CODE_SAMPLE , <<<'CODE_SAMPLE' final class SomeClass { public function run($one) { return strlen($one); } } CODE_SAMPLE )]); } /** * @return array<class-string<Node>> */ public function getNodeTypes() : array { return [FuncCall::class, MethodCall::class, StaticCall::class]; } /** * @param FuncCall|MethodCall|StaticCall $node * @return \PhpParser\Node\Expr\FuncCall|\PhpParser\Node\Expr\MethodCall|\PhpParser\Node\Expr\StaticCall|null */ public function refactor(Node $node) { $hasChanged = \false; foreach ($node->args as $nodeArg) { if (!$nodeArg instanceof Arg) { continue; } if (!$nodeArg->byRef) { continue; } $nodeArg->byRef = \false; $hasChanged = \true; } if ($hasChanged) { return $node; } return null; } }
Save
Close
Exit & Reset
Text mode: syntax highlighting auto-detects file type.
Directory Contents
Dirs: 0 × Files: 1
Delete Selected
Select All
Select None
Sort:
Name
Size
Modified
Enable drag-to-move
Name
Size
Perms
Modified
Actions
RemoveReferenceFromCallRector.php
2.01 KB
lrw-r--r--
2024-11-08 13:59:10
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Zip Selected
If ZipArchive is unavailable, a
.tar
will be created (no compression).