![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/rector/rector/vendor/rector/rector-symfony/src/Helper/ |
<?php declare (strict_types=1); namespace Rector\Symfony\Helper; use PhpParser\Node\Attribute; use PhpParser\Node\AttributeGroup; use PhpParser\Node\Name\FullyQualified; use PhpParser\Node\Stmt\Class_; use PhpParser\Node\Stmt\ClassMethod; use Rector\PhpAttribute\AttributeArrayNameInliner; use Rector\PhpAttribute\NodeFactory\PhpAttributeGroupFactory; use Rector\Symfony\DataProvider\ServiceMapProvider; use Rector\Symfony\ValueObject\ServiceDefinition; final class MessengerHelper { /** * @readonly * @var \Rector\PhpAttribute\NodeFactory\PhpAttributeGroupFactory */ private $phpAttributeGroupFactory; /** * @readonly * @var \Rector\PhpAttribute\AttributeArrayNameInliner */ private $attributeArrayNameInliner; /** * @readonly * @var \Rector\Symfony\DataProvider\ServiceMapProvider */ private $serviceMapProvider; public const MESSAGE_HANDLER_INTERFACE = 'Symfony\\Component\\Messenger\\Handler\\MessageHandlerInterface'; public const MESSAGE_SUBSCRIBER_INTERFACE = 'Symfony\\Component\\Messenger\\Handler\\MessageSubscriberInterface'; public const AS_MESSAGE_HANDLER_ATTRIBUTE = 'Symfony\\Component\\Messenger\\Attribute\\AsMessageHandler'; /** * @var string */ private $messengerTagName = 'messenger.message_handler'; public function __construct(PhpAttributeGroupFactory $phpAttributeGroupFactory, AttributeArrayNameInliner $attributeArrayNameInliner, ServiceMapProvider $serviceMapProvider) { $this->phpAttributeGroupFactory = $phpAttributeGroupFactory; $this->attributeArrayNameInliner = $attributeArrayNameInliner; $this->serviceMapProvider = $serviceMapProvider; } /** * @return array<string, mixed> */ public function extractOptionsFromServiceDefinition(ServiceDefinition $serviceDefinition) : array { $options = []; foreach ($serviceDefinition->getTags() as $tag) { if ($this->messengerTagName === $tag->getName()) { $options = $tag->getData(); } } if ($options['from_transport']) { $options['fromTransport'] = $options['from_transport']; unset($options['from_transport']); } return $options; } /** * @return ServiceDefinition[] */ public function getHandlersFromServices() : array { $serviceMap = $this->serviceMapProvider->provide(); return $serviceMap->getServicesByTag($this->messengerTagName); } /** * @param array<string, mixed> $options * @param \PhpParser\Node\Stmt\Class_|\PhpParser\Node\Stmt\ClassMethod $node * @return \PhpParser\Node\Stmt\Class_|\PhpParser\Node\Stmt\ClassMethod */ public function addAttribute($node, array $options = []) { $args = $this->phpAttributeGroupFactory->createArgsFromItems($options, self::AS_MESSAGE_HANDLER_ATTRIBUTE); $args = $this->attributeArrayNameInliner->inlineArrayToArgs($args); $node->attrGroups = \array_merge($node->attrGroups, [new AttributeGroup([new Attribute(new FullyQualified(self::AS_MESSAGE_HANDLER_ATTRIBUTE), $args)])]); return $node; } }