REDROOM
PHP 8.2.31
Path:
Logout
Edit File
Size: 1.84 KB
Close
/opt/cpanel/ea-wappspector/vendor/rector/rector/rules/CodingStyle/Rector/Encapsed/WrapEncapsedVariableInCurlyBracesRector.php
Text
Base64
<?php declare (strict_types=1); namespace Rector\CodingStyle\Rector\Encapsed; use PhpParser\Node; use PhpParser\Node\Expr\Variable; use PhpParser\Node\Scalar\Encapsed; use Rector\Rector\AbstractRector; use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample; use Symplify\RuleDocGenerator\ValueObject\RuleDefinition; /** * @see \Rector\Tests\CodingStyle\Rector\Encapsed\WrapEncapsedVariableInCurlyBracesRector\WrapEncapsedVariableInCurlyBracesRectorTest */ final class WrapEncapsedVariableInCurlyBracesRector extends AbstractRector { public function getRuleDefinition() : RuleDefinition { return new RuleDefinition('Wrap encapsed variables in curly braces', [new CodeSample(<<<'CODE_SAMPLE' function run($world) { echo "Hello $world!"; } CODE_SAMPLE , <<<'CODE_SAMPLE' function run($world) { echo "Hello {$world}!"; } CODE_SAMPLE )]); } /** * @return array<class-string<Node>> */ public function getNodeTypes() : array { return [Encapsed::class]; } /** * @param Encapsed $node */ public function refactor(Node $node) : ?Node { $startTokenPos = $node->getStartTokenPos(); $hasVariableBeenWrapped = \false; foreach ($node->parts as $index => $nodePart) { if ($nodePart instanceof Variable) { $previousNode = $node->parts[$index - 1] ?? null; $previousNodeEndTokenPosition = $previousNode instanceof Node ? $previousNode->getEndTokenPos() : $startTokenPos; if ($previousNodeEndTokenPosition + 1 === $nodePart->getStartTokenPos()) { $hasVariableBeenWrapped = \true; $node->parts[$index] = new Variable($nodePart->name); } } } if (!$hasVariableBeenWrapped) { return null; } return $node; } }
Save
Close
Exit & Reset
Text mode: syntax highlighting auto-detects file type.
Directory Contents
Dirs: 0 × Files: 2
Delete Selected
Select All
Select None
Sort:
Name
Size
Modified
Enable drag-to-move
Name
Size
Perms
Modified
Actions
EncapsedStringsToSprintfRector.php
6.70 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
WrapEncapsedVariableInCurlyBracesRector.php
1.84 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).