Preview: DoctrineAnnotationFactory.php
Size: 1.83 KB
/opt/cpanel/ea-wappspector/vendor/rector/rector/vendor/rector/rector-downgrade-php/src/NodeFactory/DoctrineAnnotationFactory.php
<?php
declare (strict_types=1);
namespace Rector\NodeFactory;
use PhpParser\Node\Arg;
use PhpParser\Node\Attribute;
use PhpParser\Node\Identifier;
use PhpParser\Node\Scalar\String_;
use PHPStan\PhpDocParser\Ast\Type\IdentifierTypeNode;
use Rector\BetterPhpDocParser\PhpDoc\DoctrineAnnotationTagValueNode;
use Rector\NodeTypeResolver\Node\AttributeKey;
use Rector\PhpParser\Printer\BetterStandardPrinter;
final class DoctrineAnnotationFactory
{
/**
* @readonly
* @var \Rector\PhpParser\Printer\BetterStandardPrinter
*/
private $betterStandardPrinter;
public function __construct(BetterStandardPrinter $betterStandardPrinter)
{
$this->betterStandardPrinter = $betterStandardPrinter;
}
/**
* @api downgrade
*/
public function createFromAttribute(Attribute $attribute, string $className) : DoctrineAnnotationTagValueNode
{
$items = $this->createItemsFromArgs($attribute->args);
$identifierTypeNode = new IdentifierTypeNode($className);
return new DoctrineAnnotationTagValueNode($identifierTypeNode, null, $items);
}
/**
* @param Arg[] $args
* @return mixed[]
*/
private function createItemsFromArgs(array $args) : array
{
$items = [];
foreach ($args as $arg) {
if ($arg->value instanceof String_) {
// standardize double quotes for annotations
$arg->value->setAttribute(AttributeKey::KIND, String_::KIND_DOUBLE_QUOTED);
}
$itemValue = $this->betterStandardPrinter->print($arg->value);
if ($arg->name instanceof Identifier) {
$name = $this->betterStandardPrinter->print($arg->name);
$items[$name] = $itemValue;
} else {
$items[] = $itemValue;
}
}
return $items;
}
}
Directory Contents
Dirs: 0 × Files: 3