vendor/shopware/core/Framework/Compatibility/DocParser.php line 1010

Open in your IDE?
  1. <?php
  2. namespace Shopware\Core\Framework\Compatibility;
  3. use Doctrine\Common\Annotations\Annotation\Attribute;
  4. use Doctrine\Common\Annotations\Annotation\Attributes;
  5. use Doctrine\Common\Annotations\Annotation\Enum;
  6. use Doctrine\Common\Annotations\Annotation\NamedArgumentConstructor;
  7. use Doctrine\Common\Annotations\Annotation\Target;
  8. use Doctrine\Common\Annotations\AnnotationException;
  9. use Doctrine\Common\Annotations\AnnotationRegistry;
  10. use Doctrine\Common\Annotations\DocLexer;
  11. use Doctrine\Common\Annotations\NamedArgumentConstructorAnnotation;
  12. use ReflectionClass;
  13. use ReflectionException;
  14. use ReflectionProperty;
  15. use RuntimeException;
  16. use stdClass;
  17. use Doctrine\Common\Annotations\Annotation as Annotation;
  18. use function array_keys;
  19. use function array_map;
  20. use function array_pop;
  21. use function array_values;
  22. use function class_exists;
  23. use function constant;
  24. use function count;
  25. use function defined;
  26. use function explode;
  27. use function gettype;
  28. use function implode;
  29. use function in_array;
  30. use function interface_exists;
  31. use function is_array;
  32. use function is_object;
  33. use function json_encode;
  34. use function ltrim;
  35. use function preg_match;
  36. use function reset;
  37. use function rtrim;
  38. use function sprintf;
  39. use function stripos;
  40. use function strlen;
  41. use function strpos;
  42. use function strrpos;
  43. use function strtolower;
  44. use function substr;
  45. use function trim;
  46. use const PHP_VERSION_ID;
  47. /**
  48.  * @package core
  49.  * @deprecated tag:v6.5.0 - Remove compatibility bridge to make parameters case insensitive
  50.  * @see https://github.com/doctrine/annotations/issues/421
  51.  */
  52. class DocParser
  53. {
  54.     /**
  55.      * An array of all valid tokens for a class name.
  56.      *
  57.      * @phpstan-var list<int>
  58.      */
  59.     private static $classIdentifiers = [
  60.         DocLexer::T_IDENTIFIER,
  61.         DocLexer::T_TRUE,
  62.         DocLexer::T_FALSE,
  63.         DocLexer::T_NULL,
  64.     ];
  65.     /**
  66.      * The lexer.
  67.      *
  68.      * @var DocLexer
  69.      */
  70.     private $lexer;
  71.     /**
  72.      * Current target context.
  73.      *
  74.      * @var int
  75.      */
  76.     private $target;
  77.     /**
  78.      * Doc parser used to collect annotation target.
  79.      *
  80.      * @var \Doctrine\Common\Annotations\DocParser
  81.      */
  82.     private static $metadataParser;
  83.     /**
  84.      * Flag to control if the current annotation is nested or not.
  85.      *
  86.      * @var bool
  87.      */
  88.     private $isNestedAnnotation false;
  89.     /**
  90.      * Hashmap containing all use-statements that are to be used when parsing
  91.      * the given doc block.
  92.      *
  93.      * @var array<string, class-string>
  94.      */
  95.     private $imports = [];
  96.     /**
  97.      * This hashmap is used internally to cache results of class_exists()
  98.      * look-ups.
  99.      *
  100.      * @var array<class-string, bool>
  101.      */
  102.     private $classExists = [];
  103.     /**
  104.      * Whether annotations that have not been imported should be ignored.
  105.      *
  106.      * @var bool
  107.      */
  108.     private $ignoreNotImportedAnnotations false;
  109.     /**
  110.      * An array of default namespaces if operating in simple mode.
  111.      *
  112.      * @var array<string>
  113.      */
  114.     private $namespaces = [];
  115.     /**
  116.      * A list with annotations that are not causing exceptions when not resolved to an annotation class.
  117.      *
  118.      * The names must be the raw names as used in the class, not the fully qualified
  119.      *
  120.      * @var bool[] indexed by annotation name
  121.      */
  122.     private $ignoredAnnotationNames = [];
  123.     /**
  124.      * A list with annotations in namespaced format
  125.      * that are not causing exceptions when not resolved to an annotation class.
  126.      *
  127.      * @var bool[] indexed by namespace name
  128.      */
  129.     private $ignoredAnnotationNamespaces = [];
  130.     /** @var string */
  131.     private $context '';
  132.     /**
  133.      * Hash-map for caching annotation metadata.
  134.      *
  135.      * @var array<class-string, mixed[]>
  136.      */
  137.     private static $annotationMetadata = [
  138.         Annotation\Target::class => [
  139.             'is_annotation'                  => true,
  140.             'has_constructor'                => true,
  141.             'has_named_argument_constructor' => false,
  142.             'properties'                     => [],
  143.             'targets_literal'                => 'ANNOTATION_CLASS',
  144.             'targets'                        => Target::TARGET_CLASS,
  145.             'default_property'               => 'value',
  146.             'attribute_types'                => [
  147.                 'value'  => [
  148.                     'required'   => false,
  149.                     'type'       => 'array',
  150.                     'array_type' => 'string',
  151.                     'value'      => 'array<string>',
  152.                 ],
  153.             ],
  154.         ],
  155.         Annotation\Attribute::class => [
  156.             'is_annotation'                  => true,
  157.             'has_constructor'                => false,
  158.             'has_named_argument_constructor' => false,
  159.             'targets_literal'                => 'ANNOTATION_ANNOTATION',
  160.             'targets'                        => Target::TARGET_ANNOTATION,
  161.             'default_property'               => 'name',
  162.             'properties'                     => [
  163.                 'name'      => 'name',
  164.                 'type'      => 'type',
  165.                 'required'  => 'required',
  166.             ],
  167.             'attribute_types'                => [
  168.                 'value'  => [
  169.                     'required'  => true,
  170.                     'type'      => 'string',
  171.                     'value'     => 'string',
  172.                 ],
  173.                 'type'  => [
  174.                     'required'  => true,
  175.                     'type'      => 'string',
  176.                     'value'     => 'string',
  177.                 ],
  178.                 'required'  => [
  179.                     'required'  => false,
  180.                     'type'      => 'boolean',
  181.                     'value'     => 'boolean',
  182.                 ],
  183.             ],
  184.         ],
  185.         Annotation\Attributes::class => [
  186.             'is_annotation'                  => true,
  187.             'has_constructor'                => false,
  188.             'has_named_argument_constructor' => false,
  189.             'targets_literal'                => 'ANNOTATION_CLASS',
  190.             'targets'                        => Target::TARGET_CLASS,
  191.             'default_property'               => 'value',
  192.             'properties'                     => ['value' => 'value'],
  193.             'attribute_types'                => [
  194.                 'value' => [
  195.                     'type'      => 'array',
  196.                     'required'  => true,
  197.                     'array_type' => Annotation\Attribute::class,
  198.                     'value'     => 'array<' Annotation\Attribute::class . '>',
  199.                 ],
  200.             ],
  201.         ],
  202.         Annotation\Enum::class => [
  203.             'is_annotation'                  => true,
  204.             'has_constructor'                => true,
  205.             'has_named_argument_constructor' => false,
  206.             'targets_literal'                => 'ANNOTATION_PROPERTY',
  207.             'targets'                        => Target::TARGET_PROPERTY,
  208.             'default_property'               => 'value',
  209.             'properties'                     => ['value' => 'value'],
  210.             'attribute_types'                => [
  211.                 'value' => [
  212.                     'type'      => 'array',
  213.                     'required'  => true,
  214.                 ],
  215.                 'literal' => [
  216.                     'type'      => 'array',
  217.                     'required'  => false,
  218.                 ],
  219.             ],
  220.         ],
  221.         Annotation\NamedArgumentConstructor::class => [
  222.             'is_annotation'                  => true,
  223.             'has_constructor'                => false,
  224.             'has_named_argument_constructor' => false,
  225.             'targets_literal'                => 'ANNOTATION_CLASS',
  226.             'targets'                        => Target::TARGET_CLASS,
  227.             'default_property'               => null,
  228.             'properties'                     => [],
  229.             'attribute_types'                => [],
  230.         ],
  231.     ];
  232.     /**
  233.      * Hash-map for handle types declaration.
  234.      *
  235.      * @var array<string, string>
  236.      */
  237.     private static $typeMap = [
  238.         'float'     => 'double',
  239.         'bool'      => 'boolean',
  240.         // allow uppercase Boolean in honor of George Boole
  241.         'Boolean'   => 'boolean',
  242.         'int'       => 'integer',
  243.     ];
  244.     /**
  245.      * Constructs a new DocParser.
  246.      */
  247.     public function __construct()
  248.     {
  249.         $this->lexer = new DocLexer();
  250.     }
  251.     /**
  252.      * Sets the annotation names that are ignored during the parsing process.
  253.      *
  254.      * The names are supposed to be the raw names as used in the class, not the
  255.      * fully qualified class names.
  256.      *
  257.      * @param bool[] $names indexed by annotation name
  258.      *
  259.      * @return void
  260.      */
  261.     public function setIgnoredAnnotationNames(array $names)
  262.     {
  263.         $this->ignoredAnnotationNames $names;
  264.     }
  265.     /**
  266.      * Sets the annotation namespaces that are ignored during the parsing process.
  267.      *
  268.      * @param bool[] $ignoredAnnotationNamespaces indexed by annotation namespace name
  269.      *
  270.      * @return void
  271.      */
  272.     public function setIgnoredAnnotationNamespaces($ignoredAnnotationNamespaces)
  273.     {
  274.         $this->ignoredAnnotationNamespaces $ignoredAnnotationNamespaces;
  275.     }
  276.     /**
  277.      * Sets ignore on not-imported annotations.
  278.      *
  279.      * @param bool $bool
  280.      *
  281.      * @return void
  282.      */
  283.     public function setIgnoreNotImportedAnnotations($bool)
  284.     {
  285.         $this->ignoreNotImportedAnnotations = (bool) $bool;
  286.     }
  287.     /**
  288.      * Sets the default namespaces.
  289.      *
  290.      * @param string $namespace
  291.      *
  292.      * @return void
  293.      *
  294.      * @throws RuntimeException
  295.      */
  296.     public function addNamespace($namespace)
  297.     {
  298.         if ($this->imports) {
  299.             throw new RuntimeException('You must either use addNamespace(), or setImports(), but not both.');
  300.         }
  301.         $this->namespaces[] = $namespace;
  302.     }
  303.     /**
  304.      * Sets the imports.
  305.      *
  306.      * @param array<string, class-string> $imports
  307.      *
  308.      * @return void
  309.      *
  310.      * @throws RuntimeException
  311.      */
  312.     public function setImports(array $imports)
  313.     {
  314.         if ($this->namespaces) {
  315.             throw new RuntimeException('You must either use addNamespace(), or setImports(), but not both.');
  316.         }
  317.         $this->imports $imports;
  318.     }
  319.     /**
  320.      * Sets current target context as bitmask.
  321.      *
  322.      * @param int $target
  323.      *
  324.      * @return void
  325.      */
  326.     public function setTarget($target)
  327.     {
  328.         $this->target $target;
  329.     }
  330.     /**
  331.      * Parses the given docblock string for annotations.
  332.      *
  333.      * @param string $input   The docblock string to parse.
  334.      * @param string $context The parsing context.
  335.      *
  336.      * @throws AnnotationException
  337.      * @throws ReflectionException
  338.      *
  339.      * @phpstan-return list<object> Array of annotations. If no annotations are found, an empty array is returned.
  340.      */
  341.     public function parse($input$context '')
  342.     {
  343.         $pos $this->findInitialTokenPosition($input);
  344.         if ($pos === null) {
  345.             return [];
  346.         }
  347.         $this->context $context;
  348.         $this->lexer->setInput(trim(substr($input$pos), '* /'));
  349.         $this->lexer->moveNext();
  350.         return $this->Annotations();
  351.     }
  352.     /**
  353.      * Finds the first valid annotation
  354.      *
  355.      * @param string $input The docblock string to parse
  356.      */
  357.     private function findInitialTokenPosition($input): ?int
  358.     {
  359.         $pos 0;
  360.         // search for first valid annotation
  361.         while (($pos strpos($input'@'$pos)) !== false) {
  362.             $preceding substr($input$pos 11);
  363.             // if the @ is preceded by a space, a tab or * it is valid
  364.             if ($pos === || $preceding === ' ' || $preceding === '*' || $preceding === "\t") {
  365.                 return $pos;
  366.             }
  367.             $pos++;
  368.         }
  369.         return null;
  370.     }
  371.     /**
  372.      * Attempts to match the given token with the current lookahead token.
  373.      * If they match, updates the lookahead token; otherwise raises a syntax error.
  374.      *
  375.      * @param int $token Type of token.
  376.      *
  377.      * @return bool True if tokens match; false otherwise.
  378.      *
  379.      * @throws AnnotationException
  380.      */
  381.     private function match(int $token): bool
  382.     {
  383.         if (! $this->lexer->isNextToken($token)) {
  384.             throw $this->syntaxError($this->lexer->getLiteral($token));
  385.         }
  386.         return $this->lexer->moveNext();
  387.     }
  388.     /**
  389.      * Attempts to match the current lookahead token with any of the given tokens.
  390.      *
  391.      * If any of them matches, this method updates the lookahead token; otherwise
  392.      * a syntax error is raised.
  393.      *
  394.      * @throws AnnotationException
  395.      *
  396.      * @phpstan-param list<mixed[]> $tokens
  397.      */
  398.     private function matchAny(array $tokens): bool
  399.     {
  400.         if (! $this->lexer->isNextTokenAny($tokens)) {
  401.             throw $this->syntaxError(implode(' or 'array_map([$this->lexer'getLiteral'], $tokens)));
  402.         }
  403.         return $this->lexer->moveNext();
  404.     }
  405.     /**
  406.      * Generates a new syntax error.
  407.      *
  408.      * @param string       $expected Expected string.
  409.      * @param mixed[]|null $token    Optional token.
  410.      */
  411.     private function syntaxError(string $expected, ?array $token null): AnnotationException
  412.     {
  413.         if ($token === null) {
  414.             $token $this->lexer->lookahead;
  415.         }
  416.         $message  sprintf('Expected %s, got '$expected);
  417.         $message .= $this->lexer->lookahead === null
  418.             'end of string'
  419.             sprintf("'%s' at position %s"$token['value'], $token['position']);
  420.         if (strlen($this->context)) {
  421.             $message .= ' in ' $this->context;
  422.         }
  423.         $message .= '.';
  424.         return AnnotationException::syntaxError($message);
  425.     }
  426.     /**
  427.      * Attempts to check if a class exists or not. This never goes through the PHP autoloading mechanism
  428.      * but uses the {@link AnnotationRegistry} to load classes.
  429.      *
  430.      * @param class-string $fqcn
  431.      */
  432.     private function classExists(string $fqcn): bool
  433.     {
  434.         if (isset($this->classExists[$fqcn])) {
  435.             return $this->classExists[$fqcn];
  436.         }
  437.         // first check if the class already exists, maybe loaded through another AnnotationReader
  438.         if (class_exists($fqcnfalse)) {
  439.             return $this->classExists[$fqcn] = true;
  440.         }
  441.         // final check, does this class exist?
  442.         return $this->classExists[$fqcn] = AnnotationRegistry::loadAnnotationClass($fqcn);
  443.     }
  444.     /**
  445.      * Collects parsing metadata for a given annotation class
  446.      *
  447.      * @param class-string $name The annotation name
  448.      *
  449.      * @throws AnnotationException
  450.      * @throws ReflectionException
  451.      */
  452.     private function collectAnnotationMetadata(string $name): void
  453.     {
  454.         if (self::$metadataParser === null) {
  455.             self::$metadataParser = new self();
  456.             self::$metadataParser->setIgnoreNotImportedAnnotations(true);
  457.             self::$metadataParser->setIgnoredAnnotationNames($this->ignoredAnnotationNames);
  458.             self::$metadataParser->setImports([
  459.                 'enum'                     => Enum::class,
  460.                 'target'                   => Target::class,
  461.                 'attribute'                => Attribute::class,
  462.                 'attributes'               => Attributes::class,
  463.                 'namedargumentconstructor' => NamedArgumentConstructor::class,
  464.             ]);
  465.             // Make sure that annotations from metadata are loaded
  466.             class_exists(Enum::class);
  467.             class_exists(Target::class);
  468.             class_exists(Attribute::class);
  469.             class_exists(Attributes::class);
  470.             class_exists(NamedArgumentConstructor::class);
  471.         }
  472.         $class      = new ReflectionClass($name);
  473.         $docComment $class->getDocComment();
  474.         // Sets default values for annotation metadata
  475.         $constructor $class->getConstructor();
  476.         $metadata    = [
  477.             'default_property' => null,
  478.             'has_constructor'  => $constructor !== null && $constructor->getNumberOfParameters() > 0,
  479.             'constructor_args' => [],
  480.             'properties'       => [],
  481.             'property_types'   => [],
  482.             'attribute_types'  => [],
  483.             'targets_literal'  => null,
  484.             'targets'          => Target::TARGET_ALL,
  485.             'is_annotation'    => strpos($docComment'@Annotation') !== false,
  486.         ];
  487.         $metadata['has_named_argument_constructor'] = $metadata['has_constructor']
  488.             && $class->implementsInterface(NamedArgumentConstructorAnnotation::class);
  489.         // verify that the class is really meant to be an annotation
  490.         if ($metadata['is_annotation']) {
  491.             self::$metadataParser->setTarget(Target::TARGET_CLASS);
  492.             foreach (self::$metadataParser->parse($docComment'class @' $name) as $annotation) {
  493.                 if ($annotation instanceof Target) {
  494.                     $metadata['targets']         = $annotation->targets;
  495.                     $metadata['targets_literal'] = $annotation->literal;
  496.                     continue;
  497.                 }
  498.                 if ($annotation instanceof NamedArgumentConstructor) {
  499.                     $metadata['has_named_argument_constructor'] = $metadata['has_constructor'];
  500.                     if ($metadata['has_named_argument_constructor']) {
  501.                         // choose the first argument as the default property
  502.                         $metadata['default_property'] = $constructor->getParameters()[0]->getName();
  503.                     }
  504.                 }
  505.                 if (! ($annotation instanceof Attributes)) {
  506.                     continue;
  507.                 }
  508.                 foreach ($annotation->value as $attribute) {
  509.                     $this->collectAttributeTypeMetadata($metadata$attribute);
  510.                 }
  511.             }
  512.             // if not has a constructor will inject values into public properties
  513.             if ($metadata['has_constructor'] === false) {
  514.                 // collect all public properties
  515.                 foreach ($class->getProperties(ReflectionProperty::IS_PUBLIC) as $property) {
  516.                     $metadata['properties'][$property->name] = $property->name;
  517.                     $propertyComment $property->getDocComment();
  518.                     if ($propertyComment === false) {
  519.                         continue;
  520.                     }
  521.                     $attribute = new Attribute();
  522.                     $attribute->required = (strpos($propertyComment'@Required') !== false);
  523.                     $attribute->name     $property->name;
  524.                     $attribute->type     = (strpos($propertyComment'@var') !== false &&
  525.                         preg_match('/@var\s+([^\s]+)/'$propertyComment$matches))
  526.                         ? $matches[1]
  527.                         : 'mixed';
  528.                     $this->collectAttributeTypeMetadata($metadata$attribute);
  529.                     // checks if the property has @Enum
  530.                     if (strpos($propertyComment'@Enum') === false) {
  531.                         continue;
  532.                     }
  533.                     $context 'property ' $class->name '::$' $property->name;
  534.                     self::$metadataParser->setTarget(Target::TARGET_PROPERTY);
  535.                     foreach (self::$metadataParser->parse($propertyComment$context) as $annotation) {
  536.                         if (! $annotation instanceof Enum) {
  537.                             continue;
  538.                         }
  539.                         $metadata['enum'][$property->name]['value']   = $annotation->value;
  540.                         $metadata['enum'][$property->name]['literal'] = (! empty($annotation->literal))
  541.                             ? $annotation->literal
  542.                             $annotation->value;
  543.                     }
  544.                 }
  545.                 // choose the first property as default property
  546.                 $metadata['default_property'] = reset($metadata['properties']);
  547.             } elseif ($metadata['has_named_argument_constructor']) {
  548.                 foreach ($constructor->getParameters() as $parameter) {
  549.                     $metadata['constructor_args'][$parameter->getName()] = [
  550.                         'position' => $parameter->getPosition(),
  551.                         'default' => $parameter->isOptional() ? $parameter->getDefaultValue() : null,
  552.                     ];
  553.                 }
  554.             }
  555.         }
  556.         self::$annotationMetadata[$name] = $metadata;
  557.     }
  558.     /**
  559.      * Collects parsing metadata for a given attribute.
  560.      *
  561.      * @param mixed[] $metadata
  562.      */
  563.     private function collectAttributeTypeMetadata(array &$metadataAttribute $attribute): void
  564.     {
  565.         // handle internal type declaration
  566.         $type self::$typeMap[$attribute->type] ?? $attribute->type;
  567.         // handle the case if the property type is mixed
  568.         if ($type === 'mixed') {
  569.             return;
  570.         }
  571.         // Evaluate type
  572.         $pos strpos($type'<');
  573.         if ($pos !== false) {
  574.             // Checks if the property has array<type>
  575.             $arrayType substr($type$pos 1, -1);
  576.             $type      'array';
  577.             if (isset(self::$typeMap[$arrayType])) {
  578.                 $arrayType self::$typeMap[$arrayType];
  579.             }
  580.             $metadata['attribute_types'][$attribute->name]['array_type'] = $arrayType;
  581.         } else {
  582.             // Checks if the property has type[]
  583.             $pos strrpos($type'[');
  584.             if ($pos !== false) {
  585.                 $arrayType substr($type0$pos);
  586.                 $type      'array';
  587.                 if (isset(self::$typeMap[$arrayType])) {
  588.                     $arrayType self::$typeMap[$arrayType];
  589.                 }
  590.                 $metadata['attribute_types'][$attribute->name]['array_type'] = $arrayType;
  591.             }
  592.         }
  593.         $metadata['attribute_types'][$attribute->name]['type']     = $type;
  594.         $metadata['attribute_types'][$attribute->name]['value']    = $attribute->type;
  595.         $metadata['attribute_types'][$attribute->name]['required'] = $attribute->required;
  596.     }
  597.     /**
  598.      * Annotations ::= Annotation {[ "*" ]* [Annotation]}*
  599.      *
  600.      * @throws AnnotationException
  601.      * @throws ReflectionException
  602.      *
  603.      * @phpstan-return list<object>
  604.      */
  605.     private function Annotations(): array
  606.     {
  607.         $annotations = [];
  608.         while ($this->lexer->lookahead !== null) {
  609.             if ($this->lexer->lookahead['type'] !== DocLexer::T_AT) {
  610.                 $this->lexer->moveNext();
  611.                 continue;
  612.             }
  613.             // make sure the @ is preceded by non-catchable pattern
  614.             if (
  615.                 $this->lexer->token !== null &&
  616.                 $this->lexer->lookahead['position'] === $this->lexer->token['position'] + strlen(
  617.                     $this->lexer->token['value']
  618.                 )
  619.             ) {
  620.                 $this->lexer->moveNext();
  621.                 continue;
  622.             }
  623.             // make sure the @ is followed by either a namespace separator, or
  624.             // an identifier token
  625.             $peek $this->lexer->glimpse();
  626.             if (
  627.                 ($peek === null)
  628.                 || ($peek['type'] !== DocLexer::T_NAMESPACE_SEPARATOR && ! in_array(
  629.                         $peek['type'],
  630.                         self::$classIdentifiers,
  631.                         true
  632.                     ))
  633.                 || $peek['position'] !== $this->lexer->lookahead['position'] + 1
  634.             ) {
  635.                 $this->lexer->moveNext();
  636.                 continue;
  637.             }
  638.             $this->isNestedAnnotation false;
  639.             $annot                    $this->Annotation();
  640.             if ($annot === false) {
  641.                 continue;
  642.             }
  643.             $annotations[] = $annot;
  644.         }
  645.         return $annotations;
  646.     }
  647.     /**
  648.      * Annotation     ::= "@" AnnotationName MethodCall
  649.      * AnnotationName ::= QualifiedName | SimpleName
  650.      * QualifiedName  ::= NameSpacePart "\" {NameSpacePart "\"}* SimpleName
  651.      * NameSpacePart  ::= identifier | null | false | true
  652.      * SimpleName     ::= identifier | null | false | true
  653.      *
  654.      * @return object|false False if it is not a valid annotation.
  655.      *
  656.      * @throws AnnotationException
  657.      * @throws ReflectionException
  658.      */
  659.     private function Annotation()
  660.     {
  661.         $this->match(DocLexer::T_AT);
  662.         // check if we have an annotation
  663.         $name $this->Identifier();
  664.         if (
  665.             $this->lexer->isNextToken(DocLexer::T_MINUS)
  666.             && $this->lexer->nextTokenIsAdjacent()
  667.         ) {
  668.             // Annotations with dashes, such as "@foo-" or "@foo-bar", are to be discarded
  669.             return false;
  670.         }
  671.         // only process names which are not fully qualified, yet
  672.         // fully qualified names must start with a \
  673.         $originalName $name;
  674.         if ($name[0] !== '\\') {
  675.             $pos          strpos($name'\\');
  676.             $alias        = ($pos === false) ? $name substr($name0$pos);
  677.             $found        false;
  678.             $loweredAlias strtolower($alias);
  679.             if ($this->namespaces) {
  680.                 foreach ($this->namespaces as $namespace) {
  681.                     if ($this->classExists($namespace '\\' $name)) {
  682.                         $name  $namespace '\\' $name;
  683.                         $found true;
  684.                         break;
  685.                     }
  686.                 }
  687.             } elseif (isset($this->imports[$loweredAlias])) {
  688.                 $namespace ltrim($this->imports[$loweredAlias], '\\');
  689.                 $name      = ($pos !== false)
  690.                     ? $namespace substr($name$pos)
  691.                     : $namespace;
  692.                 $found     $this->classExists($name);
  693.             } elseif (
  694.                 ! isset($this->ignoredAnnotationNames[$name])
  695.                 && isset($this->imports['__NAMESPACE__'])
  696.                 && $this->classExists($this->imports['__NAMESPACE__'] . '\\' $name)
  697.             ) {
  698.                 $name  $this->imports['__NAMESPACE__'] . '\\' $name;
  699.                 $found true;
  700.             } elseif (! isset($this->ignoredAnnotationNames[$name]) && $this->classExists($name)) {
  701.                 $found true;
  702.             }
  703.             if (! $found) {
  704.                 if ($this->isIgnoredAnnotation($name)) {
  705.                     return false;
  706.                 }
  707.                 throw AnnotationException::semanticalError(sprintf(
  708.                     <<<'EXCEPTION'
  709. The annotation "@%s" in %s was never imported. Did you maybe forget to add a "use" statement for this annotation?
  710. EXCEPTION
  711.                     ,
  712.                     $name,
  713.                     $this->context
  714.                 ));
  715.             }
  716.         }
  717.         $name ltrim($name'\\');
  718.         if (! $this->classExists($name)) {
  719.             throw AnnotationException::semanticalError(sprintf(
  720.                 'The annotation "@%s" in %s does not exist, or could not be auto-loaded.',
  721.                 $name,
  722.                 $this->context
  723.             ));
  724.         }
  725.         // at this point, $name contains the fully qualified class name of the
  726.         // annotation, and it is also guaranteed that this class exists, and
  727.         // that it is loaded
  728.         // collects the metadata annotation only if there is not yet
  729.         if (! isset(self::$annotationMetadata[$name])) {
  730.             $this->collectAnnotationMetadata($name);
  731.         }
  732.         // verify that the class is really meant to be an annotation and not just any ordinary class
  733.         if (self::$annotationMetadata[$name]['is_annotation'] === false) {
  734.             if ($this->isIgnoredAnnotation($originalName) || $this->isIgnoredAnnotation($name)) {
  735.                 return false;
  736.             }
  737.             throw AnnotationException::semanticalError(sprintf(
  738.                 <<<'EXCEPTION'
  739. The class "%s" is not annotated with @Annotation.
  740. Are you sure this class can be used as annotation?
  741. If so, then you need to add @Annotation to the _class_ doc comment of "%s".
  742. If it is indeed no annotation, then you need to add @IgnoreAnnotation("%s") to the _class_ doc comment of %s.
  743. EXCEPTION
  744.                 ,
  745.                 $name,
  746.                 $name,
  747.                 $originalName,
  748.                 $this->context
  749.             ));
  750.         }
  751.         //if target is nested annotation
  752.         $target $this->isNestedAnnotation Target::TARGET_ANNOTATION $this->target;
  753.         // Next will be nested
  754.         $this->isNestedAnnotation true;
  755.         //if annotation does not support current target
  756.         if ((self::$annotationMetadata[$name]['targets'] & $target) === && $target) {
  757.             throw AnnotationException::semanticalError(
  758.                 sprintf(
  759.                     <<<'EXCEPTION'
  760. Annotation @%s is not allowed to be declared on %s. You may only use this annotation on these code elements: %s.
  761. EXCEPTION
  762.                     ,
  763.                     $originalName,
  764.                     $this->context,
  765.                     self::$annotationMetadata[$name]['targets_literal']
  766.                 )
  767.             );
  768.         }
  769.         $arguments $this->MethodCall();
  770.         $values    $this->resolvePositionalValues($arguments$name);
  771.         if (isset(self::$annotationMetadata[$name]['enum'])) {
  772.             // checks all declared attributes
  773.             foreach (self::$annotationMetadata[$name]['enum'] as $property => $enum) {
  774.                 // checks if the attribute is a valid enumerator
  775.                 if (isset($values[$property]) && ! in_array($values[$property], $enum['value'])) {
  776.                     throw AnnotationException::enumeratorError(
  777.                         $property,
  778.                         $name,
  779.                         $this->context,
  780.                         $enum['literal'],
  781.                         $values[$property]
  782.                     );
  783.                 }
  784.             }
  785.         }
  786.         // checks all declared attributes
  787.         foreach (self::$annotationMetadata[$name]['attribute_types'] as $property => $type) {
  788.             if (
  789.                 $property === self::$annotationMetadata[$name]['default_property']
  790.                 && ! isset($values[$property]) && isset($values['value'])
  791.             ) {
  792.                 $property 'value';
  793.             }
  794.             // handle a not given attribute or null value
  795.             if (! isset($values[$property])) {
  796.                 if ($type['required']) {
  797.                     throw AnnotationException::requiredError(
  798.                         $property,
  799.                         $originalName,
  800.                         $this->context,
  801.                         'a(n) ' $type['value']
  802.                     );
  803.                 }
  804.                 continue;
  805.             }
  806.             if ($type['type'] === 'array') {
  807.                 // handle the case of a single value
  808.                 if (! is_array($values[$property])) {
  809.                     $values[$property] = [$values[$property]];
  810.                 }
  811.                 // checks if the attribute has array type declaration, such as "array<string>"
  812.                 if (isset($type['array_type'])) {
  813.                     foreach ($values[$property] as $item) {
  814.                         if (gettype($item) !== $type['array_type'] && ! $item instanceof $type['array_type']) {
  815.                             throw AnnotationException::attributeTypeError(
  816.                                 $property,
  817.                                 $originalName,
  818.                                 $this->context,
  819.                                 'either a(n) ' $type['array_type'] . ', or an array of ' $type['array_type'] . 's',
  820.                                 $item
  821.                             );
  822.                         }
  823.                     }
  824.                 }
  825.             } elseif (gettype($values[$property]) !== $type['type'] && ! $values[$property] instanceof $type['type']) {
  826.                 throw AnnotationException::attributeTypeError(
  827.                     $property,
  828.                     $originalName,
  829.                     $this->context,
  830.                     'a(n) ' $type['value'],
  831.                     $values[$property]
  832.                 );
  833.             }
  834.         }
  835.         if (self::$annotationMetadata[$name]['has_named_argument_constructor']) {
  836.             if (PHP_VERSION_ID >= 80000) {
  837.                 $refClass = new ReflectionClass($name);
  838.                 foreach ($refClass->getConstructor()->getParameters() as $parameter) {
  839.                     foreach ($values as $key => $val) {
  840.                         if ($parameter->getName() === $key) {
  841.                             continue;
  842.                         }
  843.                         if (strtolower($parameter->getName()) === strtolower($key)) {
  844.                             $values[$parameter->getName()] = $val;
  845.                             unset($values[$key]);
  846.                         }
  847.                     }
  848.                 }
  849.                 return new $name(...$values);
  850.             }
  851.             $positionalValues = [];
  852.             foreach (self::$annotationMetadata[$name]['constructor_args'] as $property => $parameter) {
  853.                 $positionalValues[$parameter['position']] = $parameter['default'];
  854.             }
  855.             $refClass = new ReflectionClass($name);
  856.             foreach ($refClass->getConstructor()->getParameters() as $parameter) {
  857.                 foreach ($values as $key => $val) {
  858.                     if ($parameter->getName() === $key) {
  859.                         continue;
  860.                     }
  861.                     if (strtolower($parameter->getName()) === strtolower($key)) {
  862.                         $values[$parameter->getName()] = $val;
  863.                         unset($values[$key]);
  864.                     }
  865.                 }
  866.             }
  867.             foreach ($values as $property => $value) {
  868.                 if (! isset(self::$annotationMetadata[$name]['constructor_args'][$property])) {
  869.                     throw AnnotationException::creationError(sprintf(
  870.                         <<<'EXCEPTION'
  871. The annotation @%s declared on %s does not have a property named "%s"
  872. that can be set through its named arguments constructor.
  873. Available named arguments: %s
  874. EXCEPTION
  875.                         ,
  876.                         $originalName,
  877.                         $this->context,
  878.                         $property,
  879.                         implode(', 'array_keys(self::$annotationMetadata[$name]['constructor_args']))
  880.                     ));
  881.                 }
  882.                 $positionalValues[self::$annotationMetadata[$name]['constructor_args'][$property]['position']] = $value;
  883.             }
  884.             return new $name(...$positionalValues);
  885.         }
  886.         // check if the annotation expects values via the constructor,
  887.         // or directly injected into public properties
  888.         if (self::$annotationMetadata[$name]['has_constructor'] === true) {
  889.             return new $name($values);
  890.         }
  891.         $instance = new $name();
  892.         foreach ($values as $property => $value) {
  893.             if (! isset(self::$annotationMetadata[$name]['properties'][$property])) {
  894.                 if ($property !== 'value') {
  895.                     throw AnnotationException::creationError(sprintf(
  896.                         <<<'EXCEPTION'
  897. The annotation @%s declared on %s does not have a property named "%s".
  898. Available properties: %s
  899. EXCEPTION
  900.                         ,
  901.                         $originalName,
  902.                         $this->context,
  903.                         $property,
  904.                         implode(', 'self::$annotationMetadata[$name]['properties'])
  905.                     ));
  906.                 }
  907.                 // handle the case if the property has no annotations
  908.                 $property self::$annotationMetadata[$name]['default_property'];
  909.                 if (! $property) {
  910.                     throw AnnotationException::creationError(sprintf(
  911.                         'The annotation @%s declared on %s does not accept any values, but got %s.',
  912.                         $originalName,
  913.                         $this->context,
  914.                         json_encode($values)
  915.                     ));
  916.                 }
  917.             }
  918.             $instance->{$property} = $value;
  919.         }
  920.         return $instance;
  921.     }
  922.     /**
  923.      * MethodCall ::= ["(" [Values] ")"]
  924.      *
  925.      * @return mixed[]
  926.      *
  927.      * @throws AnnotationException
  928.      * @throws ReflectionException
  929.      */
  930.     private function MethodCall(): array
  931.     {
  932.         $values = [];
  933.         if (! $this->lexer->isNextToken(DocLexer::T_OPEN_PARENTHESIS)) {
  934.             return $values;
  935.         }
  936.         $this->match(DocLexer::T_OPEN_PARENTHESIS);
  937.         if (! $this->lexer->isNextToken(DocLexer::T_CLOSE_PARENTHESIS)) {
  938.             $values $this->Values();
  939.         }
  940.         $this->match(DocLexer::T_CLOSE_PARENTHESIS);
  941.         return $values;
  942.     }
  943.     /**
  944.      * Values ::= Array | Value {"," Value}* [","]
  945.      *
  946.      * @return mixed[]
  947.      *
  948.      * @throws AnnotationException
  949.      * @throws ReflectionException
  950.      */
  951.     private function Values(): array
  952.     {
  953.         $values = [$this->Value()];
  954.         while ($this->lexer->isNextToken(DocLexer::T_COMMA)) {
  955.             $this->match(DocLexer::T_COMMA);
  956.             if ($this->lexer->isNextToken(DocLexer::T_CLOSE_PARENTHESIS)) {
  957.                 break;
  958.             }
  959.             $token $this->lexer->lookahead;
  960.             $value $this->Value();
  961.             $values[] = $value;
  962.         }
  963.         $namedArguments      = [];
  964.         $positionalArguments = [];
  965.         foreach ($values as $k => $value) {
  966.             if (is_object($value) && $value instanceof stdClass) {
  967.                 $namedArguments[$value->name] = $value->value;
  968.             } else {
  969.                 $positionalArguments[$k] = $value;
  970.             }
  971.         }
  972.         return ['named_arguments' => $namedArguments'positional_arguments' => $positionalArguments];
  973.     }
  974.     /**
  975.      * Constant ::= integer | string | float | boolean
  976.      *
  977.      * @return mixed
  978.      *
  979.      * @throws AnnotationException
  980.      */
  981.     private function Constant()
  982.     {
  983.         $identifier $this->Identifier();
  984.         if (! defined($identifier) && strpos($identifier'::') !== false && $identifier[0] !== '\\') {
  985.             [$className$const] = explode('::'$identifier);
  986.             $pos          strpos($className'\\');
  987.             $alias        = ($pos === false) ? $className substr($className0$pos);
  988.             $found        false;
  989.             $loweredAlias strtolower($alias);
  990.             switch (true) {
  991.                 case ! empty($this->namespaces):
  992.                     foreach ($this->namespaces as $ns) {
  993.                         if (class_exists($ns '\\' $className) || interface_exists($ns '\\' $className)) {
  994.                             $className $ns '\\' $className;
  995.                             $found     true;
  996.                             break;
  997.                         }
  998.                     }
  999.                     break;
  1000.                 case isset($this->imports[$loweredAlias]):
  1001.                     $found     true;
  1002.                     $className = ($pos !== false)
  1003.                         ? $this->imports[$loweredAlias] . substr($className$pos)
  1004.                         : $this->imports[$loweredAlias];
  1005.                     break;
  1006.                 default:
  1007.                     if (isset($this->imports['__NAMESPACE__'])) {
  1008.                         $ns $this->imports['__NAMESPACE__'];
  1009.                         if (class_exists($ns '\\' $className) || interface_exists($ns '\\' $className)) {
  1010.                             $className $ns '\\' $className;
  1011.                             $found     true;
  1012.                         }
  1013.                     }
  1014.                     break;
  1015.             }
  1016.             if ($found) {
  1017.                 $identifier $className '::' $const;
  1018.             }
  1019.         }
  1020.         /**
  1021.          * Checks if identifier ends with ::class and remove the leading backslash if it exists.
  1022.          */
  1023.         if (
  1024.             $this->identifierEndsWithClassConstant($identifier) &&
  1025.             ! $this->identifierStartsWithBackslash($identifier)
  1026.         ) {
  1027.             return substr($identifier0$this->getClassConstantPositionInIdentifier($identifier));
  1028.         }
  1029.         if ($this->identifierEndsWithClassConstant($identifier) && $this->identifierStartsWithBackslash($identifier)) {
  1030.             return substr($identifier1$this->getClassConstantPositionInIdentifier($identifier) - 1);
  1031.         }
  1032.         if (! defined($identifier)) {
  1033.             throw AnnotationException::semanticalErrorConstants($identifier$this->context);
  1034.         }
  1035.         return constant($identifier);
  1036.     }
  1037.     private function identifierStartsWithBackslash(string $identifier): bool
  1038.     {
  1039.         return $identifier[0] === '\\';
  1040.     }
  1041.     private function identifierEndsWithClassConstant(string $identifier): bool
  1042.     {
  1043.         return $this->getClassConstantPositionInIdentifier($identifier) === strlen($identifier) - strlen('::class');
  1044.     }
  1045.     /**
  1046.      * @return int|false
  1047.      */
  1048.     private function getClassConstantPositionInIdentifier(string $identifier)
  1049.     {
  1050.         return stripos($identifier'::class');
  1051.     }
  1052.     /**
  1053.      * Identifier ::= string
  1054.      *
  1055.      * @throws AnnotationException
  1056.      */
  1057.     private function Identifier(): string
  1058.     {
  1059.         // check if we have an annotation
  1060.         if (! $this->lexer->isNextTokenAny(self::$classIdentifiers)) {
  1061.             throw $this->syntaxError('namespace separator or identifier');
  1062.         }
  1063.         $this->lexer->moveNext();
  1064.         $className $this->lexer->token['value'];
  1065.         while (
  1066.             $this->lexer->lookahead !== null &&
  1067.             $this->lexer->lookahead['position'] === ($this->lexer->token['position'] +
  1068.                 strlen($this->lexer->token['value'])) &&
  1069.             $this->lexer->isNextToken(DocLexer::T_NAMESPACE_SEPARATOR)
  1070.         ) {
  1071.             $this->match(DocLexer::T_NAMESPACE_SEPARATOR);
  1072.             $this->matchAny(self::$classIdentifiers);
  1073.             $className .= '\\' $this->lexer->token['value'];
  1074.         }
  1075.         return $className;
  1076.     }
  1077.     /**
  1078.      * Value ::= PlainValue | FieldAssignment
  1079.      *
  1080.      * @return mixed
  1081.      *
  1082.      * @throws AnnotationException
  1083.      * @throws ReflectionException
  1084.      */
  1085.     private function Value()
  1086.     {
  1087.         $peek $this->lexer->glimpse();
  1088.         if ($peek['type'] === DocLexer::T_EQUALS) {
  1089.             return $this->FieldAssignment();
  1090.         }
  1091.         return $this->PlainValue();
  1092.     }
  1093.     /**
  1094.      * PlainValue ::= integer | string | float | boolean | Array | Annotation
  1095.      *
  1096.      * @return mixed
  1097.      *
  1098.      * @throws AnnotationException
  1099.      * @throws ReflectionException
  1100.      */
  1101.     private function PlainValue()
  1102.     {
  1103.         if ($this->lexer->isNextToken(DocLexer::T_OPEN_CURLY_BRACES)) {
  1104.             return $this->Arrayx();
  1105.         }
  1106.         if ($this->lexer->isNextToken(DocLexer::T_AT)) {
  1107.             return $this->Annotation();
  1108.         }
  1109.         if ($this->lexer->isNextToken(DocLexer::T_IDENTIFIER)) {
  1110.             return $this->Constant();
  1111.         }
  1112.         switch ($this->lexer->lookahead['type']) {
  1113.             case DocLexer::T_STRING:
  1114.                 $this->match(DocLexer::T_STRING);
  1115.                 return $this->lexer->token['value'];
  1116.             case DocLexer::T_INTEGER:
  1117.                 $this->match(DocLexer::T_INTEGER);
  1118.                 return (int) $this->lexer->token['value'];
  1119.             case DocLexer::T_FLOAT:
  1120.                 $this->match(DocLexer::T_FLOAT);
  1121.                 return (float) $this->lexer->token['value'];
  1122.             case DocLexer::T_TRUE:
  1123.                 $this->match(DocLexer::T_TRUE);
  1124.                 return true;
  1125.             case DocLexer::T_FALSE:
  1126.                 $this->match(DocLexer::T_FALSE);
  1127.                 return false;
  1128.             case DocLexer::T_NULL:
  1129.                 $this->match(DocLexer::T_NULL);
  1130.                 return null;
  1131.             default:
  1132.                 throw $this->syntaxError('PlainValue');
  1133.         }
  1134.     }
  1135.     /**
  1136.      * FieldAssignment ::= FieldName "=" PlainValue
  1137.      * FieldName ::= identifier
  1138.      *
  1139.      * @throws AnnotationException
  1140.      * @throws ReflectionException
  1141.      */
  1142.     private function FieldAssignment(): stdClass
  1143.     {
  1144.         $this->match(DocLexer::T_IDENTIFIER);
  1145.         $fieldName $this->lexer->token['value'];
  1146.         $this->match(DocLexer::T_EQUALS);
  1147.         $item        = new stdClass();
  1148.         $item->name  $fieldName;
  1149.         $item->value $this->PlainValue();
  1150.         return $item;
  1151.     }
  1152.     /**
  1153.      * Array ::= "{" ArrayEntry {"," ArrayEntry}* [","] "}"
  1154.      *
  1155.      * @return mixed[]
  1156.      *
  1157.      * @throws AnnotationException
  1158.      * @throws ReflectionException
  1159.      */
  1160.     private function Arrayx(): array
  1161.     {
  1162.         $array $values = [];
  1163.         $this->match(DocLexer::T_OPEN_CURLY_BRACES);
  1164.         // If the array is empty, stop parsing and return.
  1165.         if ($this->lexer->isNextToken(DocLexer::T_CLOSE_CURLY_BRACES)) {
  1166.             $this->match(DocLexer::T_CLOSE_CURLY_BRACES);
  1167.             return $array;
  1168.         }
  1169.         $values[] = $this->ArrayEntry();
  1170.         while ($this->lexer->isNextToken(DocLexer::T_COMMA)) {
  1171.             $this->match(DocLexer::T_COMMA);
  1172.             // optional trailing comma
  1173.             if ($this->lexer->isNextToken(DocLexer::T_CLOSE_CURLY_BRACES)) {
  1174.                 break;
  1175.             }
  1176.             $values[] = $this->ArrayEntry();
  1177.         }
  1178.         $this->match(DocLexer::T_CLOSE_CURLY_BRACES);
  1179.         foreach ($values as $value) {
  1180.             [$key$val] = $value;
  1181.             if ($key !== null) {
  1182.                 $array[$key] = $val;
  1183.             } else {
  1184.                 $array[] = $val;
  1185.             }
  1186.         }
  1187.         return $array;
  1188.     }
  1189.     /**
  1190.      * ArrayEntry ::= Value | KeyValuePair
  1191.      * KeyValuePair ::= Key ("=" | ":") PlainValue | Constant
  1192.      * Key ::= string | integer | Constant
  1193.      *
  1194.      * @throws AnnotationException
  1195.      * @throws ReflectionException
  1196.      *
  1197.      * @phpstan-return array{mixed, mixed}
  1198.      */
  1199.     private function ArrayEntry(): array
  1200.     {
  1201.         $peek $this->lexer->glimpse();
  1202.         if (
  1203.             $peek['type'] === DocLexer::T_EQUALS
  1204.             || $peek['type'] === DocLexer::T_COLON
  1205.         ) {
  1206.             if ($this->lexer->isNextToken(DocLexer::T_IDENTIFIER)) {
  1207.                 $key $this->Constant();
  1208.             } else {
  1209.                 $this->matchAny([DocLexer::T_INTEGERDocLexer::T_STRING]);
  1210.                 $key $this->lexer->token['value'];
  1211.             }
  1212.             $this->matchAny([DocLexer::T_EQUALSDocLexer::T_COLON]);
  1213.             return [$key$this->PlainValue()];
  1214.         }
  1215.         return [null$this->Value()];
  1216.     }
  1217.     /**
  1218.      * Checks whether the given $name matches any ignored annotation name or namespace
  1219.      */
  1220.     private function isIgnoredAnnotation(string $name): bool
  1221.     {
  1222.         if ($this->ignoreNotImportedAnnotations || isset($this->ignoredAnnotationNames[$name])) {
  1223.             return true;
  1224.         }
  1225.         foreach (array_keys($this->ignoredAnnotationNamespaces) as $ignoredAnnotationNamespace) {
  1226.             $ignoredAnnotationNamespace rtrim($ignoredAnnotationNamespace'\\') . '\\';
  1227.             if (stripos(rtrim($name'\\') . '\\'$ignoredAnnotationNamespace) === 0) {
  1228.                 return true;
  1229.             }
  1230.         }
  1231.         return false;
  1232.     }
  1233.     /**
  1234.      * Resolve positional arguments (without name) to named ones
  1235.      *
  1236.      * @param array<string,mixed> $arguments
  1237.      *
  1238.      * @return array<string,mixed>
  1239.      */
  1240.     private function resolvePositionalValues(array $argumentsstring $name): array
  1241.     {
  1242.         $positionalArguments $arguments['positional_arguments'] ?? [];
  1243.         $values              $arguments['named_arguments'] ?? [];
  1244.         if (
  1245.             self::$annotationMetadata[$name]['has_named_argument_constructor']
  1246.             && self::$annotationMetadata[$name]['default_property'] !== null
  1247.         ) {
  1248.             // We must ensure that we don't have positional arguments after named ones
  1249.             $positions    array_keys($positionalArguments);
  1250.             $lastPosition null;
  1251.             foreach ($positions as $position) {
  1252.                 if (
  1253.                     ($lastPosition === null && $position !== 0) ||
  1254.                     ($lastPosition !== null && $position !== $lastPosition 1)
  1255.                 ) {
  1256.                     throw $this->syntaxError('Positional arguments after named arguments is not allowed');
  1257.                 }
  1258.                 $lastPosition $position;
  1259.             }
  1260.             foreach (self::$annotationMetadata[$name]['constructor_args'] as $property => $parameter) {
  1261.                 $position $parameter['position'];
  1262.                 if (isset($values[$property]) || ! isset($positionalArguments[$position])) {
  1263.                     continue;
  1264.                 }
  1265.                 $values[$property] = $positionalArguments[$position];
  1266.             }
  1267.         } else {
  1268.             if (count($positionalArguments) > && ! isset($values['value'])) {
  1269.                 if (count($positionalArguments) === 1) {
  1270.                     $value array_pop($positionalArguments);
  1271.                 } else {
  1272.                     $value array_values($positionalArguments);
  1273.                 }
  1274.                 $values['value'] = $value;
  1275.             }
  1276.         }
  1277.         return $values;
  1278.     }
  1279. }