File manager - Edit - /var/www/payraty/helpdesk/vendor/rector/rector/vendor/rector/rector-nette/src/Rector/MethodCall/MagicHtmlCallToAppendAttributeRector.php
Back
<?php declare (strict_types=1); namespace Rector\Nette\Rector\MethodCall; use PhpParser\Node; use PhpParser\Node\Arg; use PhpParser\Node\Expr\MethodCall; use PhpParser\Node\Identifier; use PhpParser\Node\Scalar\String_; use PHPStan\Type\ObjectType; use Rector\Core\Rector\AbstractRector; use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample; use Symplify\RuleDocGenerator\ValueObject\RuleDefinition; /** * @see https://github.com/nette/utils/commit/75abe7c6aa472fd023aa49ba1a4d6c6eca0eaaa6 * @see https://github.com/nette/utils/issues/88 * * @see \Rector\Nette\Tests\Rector\MethodCall\MagicHtmlCallToAppendAttributeRector\MagicHtmlCallToAppendAttributeRectorTest */ final class MagicHtmlCallToAppendAttributeRector extends AbstractRector { public function getRuleDefinition() : RuleDefinition { return new RuleDefinition('Change magic addClass() etc. calls on Html to explicit methods', [new CodeSample(<<<'CODE_SAMPLE' use Nette\Utils\Html; final class SomeClass { public function run() { $html = Html::el(); $html->setClass('first'); } } CODE_SAMPLE , <<<'CODE_SAMPLE' use Nette\Utils\Html; final class SomeClass { public function run() { $html = Html::el(); $html->appendAttribute('class', 'first'); } } CODE_SAMPLE )]); } /** * @return array<class-string<Node>> */ public function getNodeTypes() : array { return [MethodCall::class]; } /** * @param MethodCall $node */ public function refactor(Node $node) : ?Node { if (!$this->isObjectType($node->var, new ObjectType('Nette\\Utils\\Html'))) { return null; } // @todo posibly extends by more common names if ($this->isName($node->name, 'setClass')) { $node->name = new Identifier('appendAttribute'); $args = \array_merge([new Arg(new String_('class'))], $node->args); $node->args = $args; return $node; } return null; } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings