vendor/symfony/error-handler/DebugClassLoader.php line 332

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Symfony\Component\ErrorHandler;
  11. use Composer\InstalledVersions;
  12. use Doctrine\Common\Persistence\Proxy as LegacyProxy;
  13. use Doctrine\Persistence\Proxy;
  14. use Mockery\MockInterface;
  15. use Phake\IMock;
  16. use PHPUnit\Framework\MockObject\Matcher\StatelessInvocation;
  17. use PHPUnit\Framework\MockObject\MockObject;
  18. use Prophecy\Prophecy\ProphecySubjectInterface;
  19. use ProxyManager\Proxy\ProxyInterface;
  20. use Symfony\Component\ErrorHandler\Internal\TentativeTypes;
  21. /**
  22.  * Autoloader checking if the class is really defined in the file found.
  23.  *
  24.  * The ClassLoader will wrap all registered autoloaders
  25.  * and will throw an exception if a file is found but does
  26.  * not declare the class.
  27.  *
  28.  * It can also patch classes to turn docblocks into actual return types.
  29.  * This behavior is controlled by the SYMFONY_PATCH_TYPE_DECLARATIONS env var,
  30.  * which is a url-encoded array with the follow parameters:
  31.  *  - "force": any value enables deprecation notices - can be any of:
  32.  *      - "phpdoc" to patch only docblock annotations
  33.  *      - "2" to add all possible return types
  34.  *      - "1" to add return types but only to tests/final/internal/private methods
  35.  *  - "php": the target version of PHP - e.g. "7.1" doesn't generate "object" types
  36.  *  - "deprecations": "1" to trigger a deprecation notice when a child class misses a
  37.  *                    return type while the parent declares an "@return" annotation
  38.  *
  39.  * Note that patching doesn't care about any coding style so you'd better to run
  40.  * php-cs-fixer after, with rules "phpdoc_trim_consecutive_blank_line_separation"
  41.  * and "no_superfluous_phpdoc_tags" enabled typically.
  42.  *
  43.  * @author Fabien Potencier <fabien@symfony.com>
  44.  * @author Christophe Coevoet <stof@notk.org>
  45.  * @author Nicolas Grekas <p@tchwork.com>
  46.  * @author Guilhem Niot <guilhem.niot@gmail.com>
  47.  */
  48. class DebugClassLoader
  49. {
  50.     private const SPECIAL_RETURN_TYPES = [
  51.         'void' => 'void',
  52.         'null' => 'null',
  53.         'resource' => 'resource',
  54.         'boolean' => 'bool',
  55.         'true' => 'bool',
  56.         'false' => 'false',
  57.         'integer' => 'int',
  58.         'array' => 'array',
  59.         'bool' => 'bool',
  60.         'callable' => 'callable',
  61.         'float' => 'float',
  62.         'int' => 'int',
  63.         'iterable' => 'iterable',
  64.         'object' => 'object',
  65.         'string' => 'string',
  66.         'self' => 'self',
  67.         'parent' => 'parent',
  68.         'mixed' => 'mixed',
  69.         'static' => 'static',
  70.         '$this' => 'static',
  71.         'list' => 'array',
  72.         'class-string' => 'string',
  73.     ];
  74.     private const BUILTIN_RETURN_TYPES = [
  75.         'void' => true,
  76.         'array' => true,
  77.         'false' => true,
  78.         'bool' => true,
  79.         'callable' => true,
  80.         'float' => true,
  81.         'int' => true,
  82.         'iterable' => true,
  83.         'object' => true,
  84.         'string' => true,
  85.         'self' => true,
  86.         'parent' => true,
  87.         'mixed' => true,
  88.         'static' => true,
  89.     ];
  90.     private const MAGIC_METHODS = [
  91.         '__isset' => 'bool',
  92.         '__sleep' => 'array',
  93.         '__toString' => 'string',
  94.         '__debugInfo' => 'array',
  95.         '__serialize' => 'array',
  96.     ];
  97.     /**
  98.      * @var callable
  99.      */
  100.     private $classLoader;
  101.     private bool $isFinder;
  102.     private array $loaded = [];
  103.     private array $patchTypes = [];
  104.     private static int $caseCheck;
  105.     private static array $checkedClasses = [];
  106.     private static array $final = [];
  107.     private static array $finalMethods = [];
  108.     private static array $finalProperties = [];
  109.     private static array $finalConstants = [];
  110.     private static array $deprecated = [];
  111.     private static array $internal = [];
  112.     private static array $internalMethods = [];
  113.     private static array $annotatedParameters = [];
  114.     private static array $darwinCache = ['/' => ['/', []]];
  115.     private static array $method = [];
  116.     private static array $returnTypes = [];
  117.     private static array $methodTraits = [];
  118.     private static array $fileOffsets = [];
  119.     public function __construct(callable $classLoader)
  120.     {
  121.         $this->classLoader $classLoader;
  122.         $this->isFinder \is_array($classLoader) && method_exists($classLoader[0], 'findFile');
  123.         parse_str(getenv('SYMFONY_PATCH_TYPE_DECLARATIONS') ?: ''$this->patchTypes);
  124.         $this->patchTypes += [
  125.             'force' => null,
  126.             'php' => \PHP_MAJOR_VERSION.'.'.\PHP_MINOR_VERSION,
  127.             'deprecations' => true,
  128.         ];
  129.         if ('phpdoc' === $this->patchTypes['force']) {
  130.             $this->patchTypes['force'] = 'docblock';
  131.         }
  132.         if (!isset(self::$caseCheck)) {
  133.             $file is_file(__FILE__) ? __FILE__ rtrim(realpath('.'), \DIRECTORY_SEPARATOR);
  134.             $i strrpos($file\DIRECTORY_SEPARATOR);
  135.             $dir substr($file0$i);
  136.             $file substr($file$i);
  137.             $test strtoupper($file) === $file strtolower($file) : strtoupper($file);
  138.             $test realpath($dir.$test);
  139.             if (false === $test || false === $i) {
  140.                 // filesystem is case sensitive
  141.                 self::$caseCheck 0;
  142.             } elseif (str_ends_with($test$file)) {
  143.                 // filesystem is case insensitive and realpath() normalizes the case of characters
  144.                 self::$caseCheck 1;
  145.             } elseif ('Darwin' === \PHP_OS_FAMILY) {
  146.                 // on MacOSX, HFS+ is case insensitive but realpath() doesn't normalize the case of characters
  147.                 self::$caseCheck 2;
  148.             } else {
  149.                 // filesystem case checks failed, fallback to disabling them
  150.                 self::$caseCheck 0;
  151.             }
  152.         }
  153.     }
  154.     public function getClassLoader(): callable
  155.     {
  156.         return $this->classLoader;
  157.     }
  158.     /**
  159.      * Wraps all autoloaders.
  160.      */
  161.     public static function enable(): void
  162.     {
  163.         // Ensures we don't hit https://bugs.php.net/42098
  164.         class_exists(\Symfony\Component\ErrorHandler\ErrorHandler::class);
  165.         class_exists(\Psr\Log\LogLevel::class);
  166.         if (!\is_array($functions spl_autoload_functions())) {
  167.             return;
  168.         }
  169.         foreach ($functions as $function) {
  170.             spl_autoload_unregister($function);
  171.         }
  172.         foreach ($functions as $function) {
  173.             if (!\is_array($function) || !$function[0] instanceof self) {
  174.                 $function = [new static($function), 'loadClass'];
  175.             }
  176.             spl_autoload_register($function);
  177.         }
  178.     }
  179.     /**
  180.      * Disables the wrapping.
  181.      */
  182.     public static function disable(): void
  183.     {
  184.         if (!\is_array($functions spl_autoload_functions())) {
  185.             return;
  186.         }
  187.         foreach ($functions as $function) {
  188.             spl_autoload_unregister($function);
  189.         }
  190.         foreach ($functions as $function) {
  191.             if (\is_array($function) && $function[0] instanceof self) {
  192.                 $function $function[0]->getClassLoader();
  193.             }
  194.             spl_autoload_register($function);
  195.         }
  196.     }
  197.     public static function checkClasses(): bool
  198.     {
  199.         if (!\is_array($functions spl_autoload_functions())) {
  200.             return false;
  201.         }
  202.         $loader null;
  203.         foreach ($functions as $function) {
  204.             if (\is_array($function) && $function[0] instanceof self) {
  205.                 $loader $function[0];
  206.                 break;
  207.             }
  208.         }
  209.         if (null === $loader) {
  210.             return false;
  211.         }
  212.         static $offsets = [
  213.             'get_declared_interfaces' => 0,
  214.             'get_declared_traits' => 0,
  215.             'get_declared_classes' => 0,
  216.         ];
  217.         foreach ($offsets as $getSymbols => $i) {
  218.             $symbols $getSymbols();
  219.             for (; $i \count($symbols); ++$i) {
  220.                 if (!is_subclass_of($symbols[$i], MockObject::class)
  221.                     && !is_subclass_of($symbols[$i], ProphecySubjectInterface::class)
  222.                     && !is_subclass_of($symbols[$i], Proxy::class)
  223.                     && !is_subclass_of($symbols[$i], ProxyInterface::class)
  224.                     && !is_subclass_of($symbols[$i], LegacyProxy::class)
  225.                     && !is_subclass_of($symbols[$i], MockInterface::class)
  226.                     && !is_subclass_of($symbols[$i], IMock::class)
  227.                 ) {
  228.                     $loader->checkClass($symbols[$i]);
  229.                 }
  230.             }
  231.             $offsets[$getSymbols] = $i;
  232.         }
  233.         return true;
  234.     }
  235.     public function findFile(string $class): ?string
  236.     {
  237.         return $this->isFinder ? ($this->classLoader[0]->findFile($class) ?: null) : null;
  238.     }
  239.     /**
  240.      * Loads the given class or interface.
  241.      *
  242.      * @throws \RuntimeException
  243.      */
  244.     public function loadClass(string $class): void
  245.     {
  246.         $e error_reporting(error_reporting() | \E_PARSE \E_ERROR \E_CORE_ERROR \E_COMPILE_ERROR);
  247.         try {
  248.             if ($this->isFinder && !isset($this->loaded[$class])) {
  249.                 $this->loaded[$class] = true;
  250.                 if (!$file $this->classLoader[0]->findFile($class) ?: '') {
  251.                     // no-op
  252.                 } elseif (\function_exists('opcache_is_script_cached') && @opcache_is_script_cached($file)) {
  253.                     include $file;
  254.                     return;
  255.                                 ini_set("memory_limit"'4096M');
  256. } elseif (false === include $file) {
  257.                     return;
  258.                 }
  259.             } else {
  260.                 ($this->classLoader)($class);
  261.                 $file '';
  262.             }
  263.         } finally {
  264.             error_reporting($e);
  265.         }
  266.         $this->checkClass($class$file);
  267.     }
  268.     private function checkClass(string $classstring $file null): void
  269.     {
  270.         $exists null === $file || class_exists($classfalse) || interface_exists($classfalse) || trait_exists($classfalse);
  271.         if (null !== $file && $class && '\\' === $class[0]) {
  272.             $class substr($class1);
  273.         }
  274.         if ($exists) {
  275.             if (isset(self::$checkedClasses[$class])) {
  276.                 return;
  277.             }
  278.             self::$checkedClasses[$class] = true;
  279.             $refl = new \ReflectionClass($class);
  280.             if (null === $file && $refl->isInternal()) {
  281.                 return;
  282.             }
  283.             $name $refl->getName();
  284.             if ($name !== $class && === strcasecmp($name$class)) {
  285.                 throw new \RuntimeException(sprintf('Case mismatch between loaded and declared class names: "%s" vs "%s".'$class$name));
  286.             }
  287.             $deprecations $this->checkAnnotations($refl$name);
  288.             foreach ($deprecations as $message) {
  289.                 @trigger_error($message\E_USER_DEPRECATED);
  290.             }
  291.         }
  292.         if (!$file) {
  293.             return;
  294.         }
  295.         if (!$exists) {
  296.             if (str_contains($class'/')) {
  297.                 throw new \RuntimeException(sprintf('Trying to autoload a class with an invalid name "%s". Be careful that the namespace separator is "\" in PHP, not "/".'$class));
  298.             }
  299.             throw new \RuntimeException(sprintf('The autoloader expected class "%s" to be defined in file "%s". The file was found but the class was not in it, the class name or namespace probably has a typo.'$class$file));
  300.         }
  301.         if (self::$caseCheck && $message $this->checkCase($refl$file$class)) {
  302.             throw new \RuntimeException(sprintf('Case mismatch between class and real file names: "%s" vs "%s" in "%s".'$message[0], $message[1], $message[2]));
  303.         }
  304.     }
  305.     public function checkAnnotations(\ReflectionClass $reflstring $class): array
  306.     {
  307.         if (
  308.             'Symfony\Bridge\PhpUnit\Legacy\SymfonyTestsListenerForV7' === $class
  309.             || 'Symfony\Bridge\PhpUnit\Legacy\SymfonyTestsListenerForV6' === $class
  310.         ) {
  311.             return [];
  312.         }
  313.         $deprecations = [];
  314.         $className str_contains($class"@anonymous\0") ? (get_parent_class($class) ?: key(class_implements($class)) ?: 'class').'@anonymous' $class;
  315.         // Don't trigger deprecations for classes in the same vendor
  316.         if ($class !== $className) {
  317.             $vendor preg_match('/^namespace ([^;\\\\\s]++)[;\\\\]/m', @file_get_contents($refl->getFileName()), $vendor) ? $vendor[1].'\\' '';
  318.             $vendorLen \strlen($vendor);
  319.         } elseif ($vendorLen + (strpos($class'\\') ?: strpos($class'_'))) {
  320.             $vendorLen 0;
  321.             $vendor '';
  322.         } else {
  323.             $vendor str_replace('_''\\'substr($class0$vendorLen));
  324.         }
  325.         $parent get_parent_class($class) ?: null;
  326.         self::$returnTypes[$class] = [];
  327.         $classIsTemplate false;
  328.         // Detect annotations on the class
  329.         if ($doc $this->parsePhpDoc($refl)) {
  330.             $classIsTemplate = isset($doc['template']);
  331.             foreach (['final''deprecated''internal'] as $annotation) {
  332.                 if (null !== $description $doc[$annotation][0] ?? null) {
  333.                     self::${$annotation}[$class] = '' !== $description ' '.$description.(preg_match('/[.!]$/'$description) ? '' '.') : '.';
  334.                 }
  335.             }
  336.             if ($refl->isInterface() && isset($doc['method'])) {
  337.                 foreach ($doc['method'] as $name => [$static$returnType$signature$description]) {
  338.                     self::$method[$class][] = [$class$static$returnType$name.$signature$description];
  339.                     if ('' !== $returnType) {
  340.                         $this->setReturnType($returnType$refl->name$name$refl->getFileName(), $parent);
  341.                     }
  342.                 }
  343.             }
  344.         }
  345.         $parentAndOwnInterfaces $this->getOwnInterfaces($class$parent);
  346.         if ($parent) {
  347.             $parentAndOwnInterfaces[$parent] = $parent;
  348.             if (!isset(self::$checkedClasses[$parent])) {
  349.                 $this->checkClass($parent);
  350.             }
  351.             if (isset(self::$final[$parent])) {
  352.                 $deprecations[] = sprintf('The "%s" class is considered final%s It may change without further notice as of its next major version. You should not extend it from "%s".'$parentself::$final[$parent], $className);
  353.             }
  354.         }
  355.         // Detect if the parent is annotated
  356.         foreach ($parentAndOwnInterfaces class_uses($classfalse) as $use) {
  357.             if (!isset(self::$checkedClasses[$use])) {
  358.                 $this->checkClass($use);
  359.             }
  360.             if (isset(self::$deprecated[$use]) && strncmp($vendorstr_replace('_''\\'$use), $vendorLen) && !isset(self::$deprecated[$class])) {
  361.                 $type class_exists($classfalse) ? 'class' : (interface_exists($classfalse) ? 'interface' 'trait');
  362.                 $verb class_exists($usefalse) || interface_exists($classfalse) ? 'extends' : (interface_exists($usefalse) ? 'implements' 'uses');
  363.                 $deprecations[] = sprintf('The "%s" %s %s "%s" that is deprecated%s'$className$type$verb$useself::$deprecated[$use]);
  364.             }
  365.             if (isset(self::$internal[$use]) && strncmp($vendorstr_replace('_''\\'$use), $vendorLen)) {
  366.                 $deprecations[] = sprintf('The "%s" %s is considered internal%s It may change without further notice. You should not use it from "%s".'$useclass_exists($usefalse) ? 'class' : (interface_exists($usefalse) ? 'interface' 'trait'), self::$internal[$use], $className);
  367.             }
  368.             if (isset(self::$method[$use])) {
  369.                 if ($refl->isAbstract()) {
  370.                     if (isset(self::$method[$class])) {
  371.                         self::$method[$class] = array_merge(self::$method[$class], self::$method[$use]);
  372.                     } else {
  373.                         self::$method[$class] = self::$method[$use];
  374.                     }
  375.                 } elseif (!$refl->isInterface()) {
  376.                     if (!strncmp($vendorstr_replace('_''\\'$use), $vendorLen)
  377.                         && str_starts_with($className'Symfony\\')
  378.                         && (!class_exists(InstalledVersions::class)
  379.                             || 'symfony/symfony' !== InstalledVersions::getRootPackage()['name'])
  380.                     ) {
  381.                         // skip "same vendor" @method deprecations for Symfony\* classes unless symfony/symfony is being tested
  382.                         continue;
  383.                     }
  384.                     $hasCall $refl->hasMethod('__call');
  385.                     $hasStaticCall $refl->hasMethod('__callStatic');
  386.                     foreach (self::$method[$use] as [$interface$static$returnType$name$description]) {
  387.                         if ($static $hasStaticCall $hasCall) {
  388.                             continue;
  389.                         }
  390.                         $realName substr($name0strpos($name'('));
  391.                         if (!$refl->hasMethod($realName) || !($methodRefl $refl->getMethod($realName))->isPublic() || ($static && !$methodRefl->isStatic()) || (!$static && $methodRefl->isStatic())) {
  392.                             $deprecations[] = sprintf('Class "%s" should implement method "%s::%s%s"%s'$className, ($static 'static ' '').$interface$name$returnType ': '.$returnType ''null === $description '.' ': '.$description);
  393.                         }
  394.                     }
  395.                 }
  396.             }
  397.         }
  398.         if (trait_exists($class)) {
  399.             $file $refl->getFileName();
  400.             foreach ($refl->getMethods() as $method) {
  401.                 if ($method->getFileName() === $file) {
  402.                     self::$methodTraits[$file][$method->getStartLine()] = $class;
  403.                 }
  404.             }
  405.             return $deprecations;
  406.         }
  407.         // Inherit @final, @internal, @param and @return annotations for methods
  408.         self::$finalMethods[$class] = [];
  409.         self::$internalMethods[$class] = [];
  410.         self::$annotatedParameters[$class] = [];
  411.         self::$finalProperties[$class] = [];
  412.         self::$finalConstants[$class] = [];
  413.         foreach ($parentAndOwnInterfaces as $use) {
  414.             foreach (['finalMethods''internalMethods''annotatedParameters''returnTypes''finalProperties''finalConstants'] as $property) {
  415.                 if (isset(self::${$property}[$use])) {
  416.                     self::${$property}[$class] = self::${$property}[$class] ? self::${$property}[$use] + self::${$property}[$class] : self::${$property}[$use];
  417.                 }
  418.             }
  419.             if (null !== (TentativeTypes::RETURN_TYPES[$use] ?? null)) {
  420.                 foreach (TentativeTypes::RETURN_TYPES[$use] as $method => $returnType) {
  421.                     $returnType explode('|'$returnType);
  422.                     foreach ($returnType as $i => $t) {
  423.                         if ('?' !== $t && !isset(self::BUILTIN_RETURN_TYPES[$t])) {
  424.                             $returnType[$i] = '\\'.$t;
  425.                         }
  426.                     }
  427.                     $returnType implode('|'$returnType);
  428.                     self::$returnTypes[$class] += [$method => [$returnTypestr_starts_with($returnType'?') ? substr($returnType1).'|null' $returnType$use'']];
  429.                 }
  430.             }
  431.         }
  432.         foreach ($refl->getMethods() as $method) {
  433.             if ($method->class !== $class) {
  434.                 continue;
  435.             }
  436.             if (null === $ns self::$methodTraits[$method->getFileName()][$method->getStartLine()] ?? null) {
  437.                 $ns $vendor;
  438.                 $len $vendorLen;
  439.             } elseif ($len + (strpos($ns'\\') ?: strpos($ns'_'))) {
  440.                 $len 0;
  441.                 $ns '';
  442.             } else {
  443.                 $ns str_replace('_''\\'substr($ns0$len));
  444.             }
  445.             if ($parent && isset(self::$finalMethods[$parent][$method->name])) {
  446.                 [$declaringClass$message] = self::$finalMethods[$parent][$method->name];
  447.                 $deprecations[] = sprintf('The "%s::%s()" method is considered final%s It may change without further notice as of its next major version. You should not extend it from "%s".'$declaringClass$method->name$message$className);
  448.             }
  449.             if (isset(self::$internalMethods[$class][$method->name])) {
  450.                 [$declaringClass$message] = self::$internalMethods[$class][$method->name];
  451.                 if (strncmp($ns$declaringClass$len)) {
  452.                     $deprecations[] = sprintf('The "%s::%s()" method is considered internal%s It may change without further notice. You should not extend it from "%s".'$declaringClass$method->name$message$className);
  453.                 }
  454.             }
  455.             // To read method annotations
  456.             $doc $this->parsePhpDoc($method);
  457.             if (($classIsTemplate || isset($doc['template'])) && $method->hasReturnType()) {
  458.                 unset($doc['return']);
  459.             }
  460.             if (isset(self::$annotatedParameters[$class][$method->name])) {
  461.                 $definedParameters = [];
  462.                 foreach ($method->getParameters() as $parameter) {
  463.                     $definedParameters[$parameter->name] = true;
  464.                 }
  465.                 foreach (self::$annotatedParameters[$class][$method->name] as $parameterName => $deprecation) {
  466.                     if (!isset($definedParameters[$parameterName]) && !isset($doc['param'][$parameterName])) {
  467.                         $deprecations[] = sprintf($deprecation$className);
  468.                     }
  469.                 }
  470.             }
  471.             $forcePatchTypes $this->patchTypes['force'];
  472.             if ($canAddReturnType null !== $forcePatchTypes && !str_contains($method->getFileName(), \DIRECTORY_SEPARATOR.'vendor'.\DIRECTORY_SEPARATOR)) {
  473.                 if ('void' !== (self::MAGIC_METHODS[$method->name] ?? 'void')) {
  474.                     $this->patchTypes['force'] = $forcePatchTypes ?: 'docblock';
  475.                 }
  476.                 $canAddReturnType === (int) $forcePatchTypes
  477.                     || false !== stripos($method->getFileName(), \DIRECTORY_SEPARATOR.'Tests'.\DIRECTORY_SEPARATOR)
  478.                     || $refl->isFinal()
  479.                     || $method->isFinal()
  480.                     || $method->isPrivate()
  481.                     || ('.' === (self::$internal[$class] ?? null) && !$refl->isAbstract())
  482.                     || '.' === (self::$final[$class] ?? null)
  483.                     || '' === ($doc['final'][0] ?? null)
  484.                     || '' === ($doc['internal'][0] ?? null)
  485.                 ;
  486.             }
  487.             if (null !== ($returnType self::$returnTypes[$class][$method->name] ?? null) && 'docblock' === $this->patchTypes['force'] && !$method->hasReturnType() && isset(TentativeTypes::RETURN_TYPES[$returnType[2]][$method->name])) {
  488.                 $this->patchReturnTypeWillChange($method);
  489.             }
  490.             if (null !== ($returnType ??= self::MAGIC_METHODS[$method->name] ?? null) && !$method->hasReturnType() && !isset($doc['return'])) {
  491.                 [$normalizedType$returnType$declaringClass$declaringFile] = \is_string($returnType) ? [$returnType$returnType''''] : $returnType;
  492.                 if ($canAddReturnType && 'docblock' !== $this->patchTypes['force']) {
  493.                     $this->patchMethod($method$returnType$declaringFile$normalizedType);
  494.                 }
  495.                 if (!isset($doc['deprecated']) && strncmp($ns$declaringClass$len)) {
  496.                     if ('docblock' === $this->patchTypes['force']) {
  497.                         $this->patchMethod($method$returnType$declaringFile$normalizedType);
  498.                     } elseif ('' !== $declaringClass && $this->patchTypes['deprecations']) {
  499.                         $deprecations[] = sprintf('Method "%s::%s()" might add "%s" as a native return type declaration in the future. Do the same in %s "%s" now to avoid errors or add an explicit @return annotation to suppress this message.'$declaringClass$method->name$normalizedTypeinterface_exists($declaringClass) ? 'implementation' 'child class'$className);
  500.                     }
  501.                 }
  502.             }
  503.             if (!$doc) {
  504.                 $this->patchTypes['force'] = $forcePatchTypes;
  505.                 continue;
  506.             }
  507.             if (isset($doc['return']) || 'void' !== (self::MAGIC_METHODS[$method->name] ?? 'void')) {
  508.                 $this->setReturnType($doc['return'] ?? self::MAGIC_METHODS[$method->name], $method->class$method->name$method->getFileName(), $parent$method->getReturnType());
  509.                 if (isset(self::$returnTypes[$class][$method->name][0]) && $canAddReturnType) {
  510.                     $this->fixReturnStatements($methodself::$returnTypes[$class][$method->name][0]);
  511.                 }
  512.                 if ($method->isPrivate()) {
  513.                     unset(self::$returnTypes[$class][$method->name]);
  514.                 }
  515.             }
  516.             $this->patchTypes['force'] = $forcePatchTypes;
  517.             if ($method->isPrivate()) {
  518.                 continue;
  519.             }
  520.             $finalOrInternal false;
  521.             foreach (['final''internal'] as $annotation) {
  522.                 if (null !== $description $doc[$annotation][0] ?? null) {
  523.                     self::${$annotation.'Methods'}[$class][$method->name] = [$class'' !== $description ' '.$description.(preg_match('/[[:punct:]]$/'$description) ? '' '.') : '.'];
  524.                     $finalOrInternal true;
  525.                 }
  526.             }
  527.             if ($finalOrInternal || $method->isConstructor() || !isset($doc['param']) || StatelessInvocation::class === $class) {
  528.                 continue;
  529.             }
  530.             if (!isset(self::$annotatedParameters[$class][$method->name])) {
  531.                 $definedParameters = [];
  532.                 foreach ($method->getParameters() as $parameter) {
  533.                     $definedParameters[$parameter->name] = true;
  534.                 }
  535.             }
  536.             foreach ($doc['param'] as $parameterName => $parameterType) {
  537.                 if (!isset($definedParameters[$parameterName])) {
  538.                     self::$annotatedParameters[$class][$method->name][$parameterName] = sprintf('The "%%s::%s()" method will require a new "%s$%s" argument in the next major version of its %s "%s", not defining it is deprecated.'$method->name$parameterType $parameterType.' ' ''$parameterNameinterface_exists($className) ? 'interface' 'parent class'$className);
  539.                 }
  540.             }
  541.         }
  542.         $finals = isset(self::$final[$class]) || $refl->isFinal() ? [] : [
  543.             'finalConstants' => $refl->getReflectionConstants(\ReflectionClassConstant::IS_PUBLIC \ReflectionClassConstant::IS_PROTECTED),
  544.             'finalProperties' => $refl->getProperties(\ReflectionProperty::IS_PUBLIC \ReflectionProperty::IS_PROTECTED),
  545.         ];
  546.         foreach ($finals as $type => $reflectors) {
  547.             foreach ($reflectors as $r) {
  548.                 if ($r->class !== $class) {
  549.                     continue;
  550.                 }
  551.                 $doc $this->parsePhpDoc($r);
  552.                 foreach ($parentAndOwnInterfaces as $use) {
  553.                     if (isset(self::${$type}[$use][$r->name]) && !isset($doc['deprecated']) && ('finalConstants' === $type || substr($use0strrpos($use'\\')) !== substr($use0strrpos($class'\\')))) {
  554.                         $msg 'finalConstants' === $type '%s" constant' '$%s" property';
  555.                         $deprecations[] = sprintf('The "%s::'.$msg.' is considered final. You should not override it in "%s".'self::${$type}[$use][$r->name], $r->name$class);
  556.                     }
  557.                 }
  558.                 if (isset($doc['final']) || ('finalProperties' === $type && str_starts_with($class'Symfony\\') && !$r->hasType())) {
  559.                     self::${$type}[$class][$r->name] = $class;
  560.                 }
  561.             }
  562.         }
  563.         return $deprecations;
  564.     }
  565.     public function checkCase(\ReflectionClass $reflstring $filestring $class): ?array
  566.     {
  567.         $real explode('\\'$class.strrchr($file'.'));
  568.         $tail explode(\DIRECTORY_SEPARATORstr_replace('/'\DIRECTORY_SEPARATOR$file));
  569.         $i \count($tail) - 1;
  570.         $j \count($real) - 1;
  571.         while (isset($tail[$i], $real[$j]) && $tail[$i] === $real[$j]) {
  572.             --$i;
  573.             --$j;
  574.         }
  575.         array_splice($tail0$i 1);
  576.         if (!$tail) {
  577.             return null;
  578.         }
  579.         $tail \DIRECTORY_SEPARATOR.implode(\DIRECTORY_SEPARATOR$tail);
  580.         $tailLen \strlen($tail);
  581.         $real $refl->getFileName();
  582.         if (=== self::$caseCheck) {
  583.             $real $this->darwinRealpath($real);
  584.         }
  585.         if (=== substr_compare($real$tail, -$tailLen$tailLentrue)
  586.             && !== substr_compare($real$tail, -$tailLen$tailLenfalse)
  587.         ) {
  588.             return [substr($tail, -$tailLen 1), substr($real, -$tailLen 1), substr($real0, -$tailLen 1)];
  589.         }
  590.         return null;
  591.     }
  592.     /**
  593.      * `realpath` on MacOSX doesn't normalize the case of characters.
  594.      */
  595.     private function darwinRealpath(string $real): string
  596.     {
  597.         $i strrpos($real'/');
  598.         $file substr($real$i);
  599.         $real substr($real0$i);
  600.         if (isset(self::$darwinCache[$real])) {
  601.             $kDir $real;
  602.         } else {
  603.             $kDir strtolower($real);
  604.             if (isset(self::$darwinCache[$kDir])) {
  605.                 $real self::$darwinCache[$kDir][0];
  606.             } else {
  607.                 $dir getcwd();
  608.                 if (!@chdir($real)) {
  609.                     return $real.$file;
  610.                 }
  611.                 $real getcwd().'/';
  612.                 chdir($dir);
  613.                 $dir $real;
  614.                 $k $kDir;
  615.                 $i \strlen($dir) - 1;
  616.                 while (!isset(self::$darwinCache[$k])) {
  617.                     self::$darwinCache[$k] = [$dir, []];
  618.                     self::$darwinCache[$dir] = &self::$darwinCache[$k];
  619.                     while ('/' !== $dir[--$i]) {
  620.                     }
  621.                     $k substr($k0, ++$i);
  622.                     $dir substr($dir0$i--);
  623.                 }
  624.             }
  625.         }
  626.         $dirFiles self::$darwinCache[$kDir][1];
  627.         if (!isset($dirFiles[$file]) && str_ends_with($file') : eval()\'d code')) {
  628.             // Get the file name from "file_name.php(123) : eval()'d code"
  629.             $file substr($file0strrpos($file'(', -17));
  630.         }
  631.         if (isset($dirFiles[$file])) {
  632.             return $real.$dirFiles[$file];
  633.         }
  634.         $kFile strtolower($file);
  635.         if (!isset($dirFiles[$kFile])) {
  636.             foreach (scandir($real2) as $f) {
  637.                 if ('.' !== $f[0]) {
  638.                     $dirFiles[$f] = $f;
  639.                     if ($f === $file) {
  640.                         $kFile $k $file;
  641.                     } elseif ($f !== $k strtolower($f)) {
  642.                         $dirFiles[$k] = $f;
  643.                     }
  644.                 }
  645.             }
  646.             self::$darwinCache[$kDir][1] = $dirFiles;
  647.         }
  648.         return $real.$dirFiles[$kFile];
  649.     }
  650.     /**
  651.      * `class_implements` includes interfaces from the parents so we have to manually exclude them.
  652.      *
  653.      * @return string[]
  654.      */
  655.     private function getOwnInterfaces(string $class, ?string $parent): array
  656.     {
  657.         $ownInterfaces class_implements($classfalse);
  658.         if ($parent) {
  659.             foreach (class_implements($parentfalse) as $interface) {
  660.                 unset($ownInterfaces[$interface]);
  661.             }
  662.         }
  663.         foreach ($ownInterfaces as $interface) {
  664.             foreach (class_implements($interface) as $interface) {
  665.                 unset($ownInterfaces[$interface]);
  666.             }
  667.         }
  668.         return $ownInterfaces;
  669.     }
  670.     private function setReturnType(string $typesstring $classstring $methodstring $filename, ?string $parent\ReflectionType $returnType null): void
  671.     {
  672.         if ('__construct' === $method) {
  673.             return;
  674.         }
  675.         if ($nullable str_starts_with($types'null|')) {
  676.             $types substr($types5);
  677.         } elseif ($nullable str_ends_with($types'|null')) {
  678.             $types substr($types0, -5);
  679.         }
  680.         $arrayType = ['array' => 'array'];
  681.         $typesMap = [];
  682.         $glue str_contains($types'&') ? '&' '|';
  683.         foreach (explode($glue$types) as $t) {
  684.             $t self::SPECIAL_RETURN_TYPES[strtolower($t)] ?? $t;
  685.             $typesMap[$this->normalizeType($t$class$parent$returnType)][$t] = $t;
  686.         }
  687.         if (isset($typesMap['array'])) {
  688.             if (isset($typesMap['Traversable']) || isset($typesMap['\Traversable'])) {
  689.                 $typesMap['iterable'] = $arrayType !== $typesMap['array'] ? $typesMap['array'] : ['iterable'];
  690.                 unset($typesMap['array'], $typesMap['Traversable'], $typesMap['\Traversable']);
  691.             } elseif ($arrayType !== $typesMap['array'] && isset(self::$returnTypes[$class][$method]) && !$returnType) {
  692.                 return;
  693.             }
  694.         }
  695.         if (isset($typesMap['array']) && isset($typesMap['iterable'])) {
  696.             if ($arrayType !== $typesMap['array']) {
  697.                 $typesMap['iterable'] = $typesMap['array'];
  698.             }
  699.             unset($typesMap['array']);
  700.         }
  701.         $iterable $object true;
  702.         foreach ($typesMap as $n => $t) {
  703.             if ('null' !== $n) {
  704.                 $iterable $iterable && (\in_array($n, ['array''iterable']) || str_contains($n'Iterator'));
  705.                 $object $object && (\in_array($n, ['callable''object''$this''static']) || !isset(self::SPECIAL_RETURN_TYPES[$n]));
  706.             }
  707.         }
  708.         $phpTypes = [];
  709.         $docTypes = [];
  710.         foreach ($typesMap as $n => $t) {
  711.             if ('null' === $n) {
  712.                 $nullable true;
  713.                 continue;
  714.             }
  715.             $docTypes[] = $t;
  716.             if ('mixed' === $n || 'void' === $n) {
  717.                 $nullable false;
  718.                 $phpTypes = ['' => $n];
  719.                 continue;
  720.             }
  721.             if ('resource' === $n) {
  722.                 // there is no native type for "resource"
  723.                 return;
  724.             }
  725.             if (!isset($phpTypes[''])) {
  726.                 $phpTypes[] = $n;
  727.             }
  728.         }
  729.         $docTypes array_merge([], ...$docTypes);
  730.         if (!$phpTypes) {
  731.             return;
  732.         }
  733.         if (\count($phpTypes)) {
  734.             if ($iterable && '8.0' $this->patchTypes['php']) {
  735.                 $phpTypes $docTypes = ['iterable'];
  736.             } elseif ($object && 'object' === $this->patchTypes['force']) {
  737.                 $phpTypes $docTypes = ['object'];
  738.             } elseif ('8.0' $this->patchTypes['php']) {
  739.                 // ignore multi-types return declarations
  740.                 return;
  741.             }
  742.         }
  743.         $phpType sprintf($nullable ? (\count($phpTypes) ? '%s|null' '?%s') : '%s'implode($glue$phpTypes));
  744.         $docType sprintf($nullable '%s|null' '%s'implode($glue$docTypes));
  745.         self::$returnTypes[$class][$method] = [$phpType$docType$class$filename];
  746.     }
  747.     private function normalizeType(string $typestring $class, ?string $parent, ?\ReflectionType $returnType): string
  748.     {
  749.         if (isset(self::SPECIAL_RETURN_TYPES[$lcType strtolower($type)])) {
  750.             if ('parent' === $lcType self::SPECIAL_RETURN_TYPES[$lcType]) {
  751.                 $lcType null !== $parent '\\'.$parent 'parent';
  752.             } elseif ('self' === $lcType) {
  753.                 $lcType '\\'.$class;
  754.             }
  755.             return $lcType;
  756.         }
  757.         // We could resolve "use" statements to return the FQDN
  758.         // but this would be too expensive for a runtime checker
  759.         if (!str_ends_with($type'[]')) {
  760.             return $type;
  761.         }
  762.         if ($returnType instanceof \ReflectionNamedType) {
  763.             $type $returnType->getName();
  764.             if ('mixed' !== $type) {
  765.                 return isset(self::SPECIAL_RETURN_TYPES[$type]) ? $type '\\'.$type;
  766.             }
  767.         }
  768.         return 'array';
  769.     }
  770.     /**
  771.      * Utility method to add #[ReturnTypeWillChange] where php triggers deprecations.
  772.      */
  773.     private function patchReturnTypeWillChange(\ReflectionMethod $method)
  774.     {
  775.         if (\count($method->getAttributes(\ReturnTypeWillChange::class))) {
  776.             return;
  777.         }
  778.         if (!is_file($file $method->getFileName())) {
  779.             return;
  780.         }
  781.         $fileOffset self::$fileOffsets[$file] ?? 0;
  782.         $code file($file);
  783.         $startLine $method->getStartLine() + $fileOffset 2;
  784.         if (false !== stripos($code[$startLine], 'ReturnTypeWillChange')) {
  785.             return;
  786.         }
  787.         $code[$startLine] .= "    #[\\ReturnTypeWillChange]\n";
  788.         self::$fileOffsets[$file] = $fileOffset;
  789.         file_put_contents($file$code);
  790.     }
  791.     /**
  792.      * Utility method to add @return annotations to the Symfony code-base where it triggers self-deprecations.
  793.      */
  794.     private function patchMethod(\ReflectionMethod $methodstring $returnTypestring $declaringFilestring $normalizedType)
  795.     {
  796.         static $patchedMethods = [];
  797.         static $useStatements = [];
  798.         if (!is_file($file $method->getFileName()) || isset($patchedMethods[$file][$startLine $method->getStartLine()])) {
  799.             return;
  800.         }
  801.         $patchedMethods[$file][$startLine] = true;
  802.         $fileOffset self::$fileOffsets[$file] ?? 0;
  803.         $startLine += $fileOffset 2;
  804.         if ($nullable str_ends_with($returnType'|null')) {
  805.             $returnType substr($returnType0, -5);
  806.         }
  807.         $glue str_contains($returnType'&') ? '&' '|';
  808.         $returnType explode($glue$returnType);
  809.         $code file($file);
  810.         foreach ($returnType as $i => $type) {
  811.             if (preg_match('/((?:\[\])+)$/'$type$m)) {
  812.                 $type substr($type0, -\strlen($m[1]));
  813.                 $format '%s'.$m[1];
  814.             } else {
  815.                 $format null;
  816.             }
  817.             if (isset(self::SPECIAL_RETURN_TYPES[$type]) || ('\\' === $type[0] && !$p strrpos($type'\\'1))) {
  818.                 continue;
  819.             }
  820.             [$namespace$useOffset$useMap] = $useStatements[$file] ??= self::getUseStatements($file);
  821.             if ('\\' !== $type[0]) {
  822.                 [$declaringNamespace, , $declaringUseMap] = $useStatements[$declaringFile] ??= self::getUseStatements($declaringFile);
  823.                 $p strpos($type'\\'1);
  824.                 $alias $p substr($type0$p) : $type;
  825.                 if (isset($declaringUseMap[$alias])) {
  826.                     $type '\\'.$declaringUseMap[$alias].($p substr($type$p) : '');
  827.                 } else {
  828.                     $type '\\'.$declaringNamespace.$type;
  829.                 }
  830.                 $p strrpos($type'\\'1);
  831.             }
  832.             $alias substr($type$p);
  833.             $type substr($type1);
  834.             if (!isset($useMap[$alias]) && (class_exists($c $namespace.$alias) || interface_exists($c) || trait_exists($c))) {
  835.                 $useMap[$alias] = $c;
  836.             }
  837.             if (!isset($useMap[$alias])) {
  838.                 $useStatements[$file][2][$alias] = $type;
  839.                 $code[$useOffset] = "use $type;\n".$code[$useOffset];
  840.                 ++$fileOffset;
  841.             } elseif ($useMap[$alias] !== $type) {
  842.                 $alias .= 'FIXME';
  843.                 $useStatements[$file][2][$alias] = $type;
  844.                 $code[$useOffset] = "use $type as $alias;\n".$code[$useOffset];
  845.                 ++$fileOffset;
  846.             }
  847.             $returnType[$i] = null !== $format sprintf($format$alias) : $alias;
  848.         }
  849.         if ('docblock' === $this->patchTypes['force'] || ('object' === $normalizedType && '7.1' === $this->patchTypes['php'])) {
  850.             $returnType implode($glue$returnType).($nullable '|null' '');
  851.             if (str_contains($code[$startLine], '#[')) {
  852.                 --$startLine;
  853.             }
  854.             if ($method->getDocComment()) {
  855.                 $code[$startLine] = "     * @return $returnType\n".$code[$startLine];
  856.             } else {
  857.                 $code[$startLine] .= <<<EOTXT
  858.     /**
  859.      * @return $returnType
  860.      */
  861. EOTXT;
  862.             }
  863.             $fileOffset += substr_count($code[$startLine], "\n") - 1;
  864.         }
  865.         self::$fileOffsets[$file] = $fileOffset;
  866.         file_put_contents($file$code);
  867.         $this->fixReturnStatements($method$normalizedType);
  868.     }
  869.     private static function getUseStatements(string $file): array
  870.     {
  871.         $namespace '';
  872.         $useMap = [];
  873.         $useOffset 0;
  874.         if (!is_file($file)) {
  875.             return [$namespace$useOffset$useMap];
  876.         }
  877.         $file file($file);
  878.         for ($i 0$i \count($file); ++$i) {
  879.             if (preg_match('/^(class|interface|trait|abstract) /'$file[$i])) {
  880.                 break;
  881.             }
  882.             if (str_starts_with($file[$i], 'namespace ')) {
  883.                 $namespace substr($file[$i], \strlen('namespace '), -2).'\\';
  884.                 $useOffset $i 2;
  885.             }
  886.             if (str_starts_with($file[$i], 'use ')) {
  887.                 $useOffset $i;
  888.                 for (; str_starts_with($file[$i], 'use '); ++$i) {
  889.                     $u explode(' as 'substr($file[$i], 4, -2), 2);
  890.                     if (=== \count($u)) {
  891.                         $p strrpos($u[0], '\\');
  892.                         $useMap[substr($u[0], false !== $p $p 0)] = $u[0];
  893.                     } else {
  894.                         $useMap[$u[1]] = $u[0];
  895.                     }
  896.                 }
  897.                 break;
  898.             }
  899.         }
  900.         return [$namespace$useOffset$useMap];
  901.     }
  902.     private function fixReturnStatements(\ReflectionMethod $methodstring $returnType)
  903.     {
  904.         if ('docblock' !== $this->patchTypes['force']) {
  905.             if ('7.1' === $this->patchTypes['php'] && 'object' === ltrim($returnType'?')) {
  906.                 return;
  907.             }
  908.             if ('7.4' $this->patchTypes['php'] && $method->hasReturnType()) {
  909.                 return;
  910.             }
  911.             if ('8.0' $this->patchTypes['php'] && (str_contains($returnType'|') || \in_array($returnType, ['mixed''static'], true))) {
  912.                 return;
  913.             }
  914.             if ('8.1' $this->patchTypes['php'] && str_contains($returnType'&')) {
  915.                 return;
  916.             }
  917.         }
  918.         if (!is_file($file $method->getFileName())) {
  919.             return;
  920.         }
  921.         $fixedCode $code file($file);
  922.         $i = (self::$fileOffsets[$file] ?? 0) + $method->getStartLine();
  923.         if ('?' !== $returnType && 'docblock' !== $this->patchTypes['force']) {
  924.             $fixedCode[$i 1] = preg_replace('/\)(?::[^;\n]++)?(;?\n)/'"): $returnType\\1"$code[$i 1]);
  925.         }
  926.         $end $method->isGenerator() ? $i $method->getEndLine();
  927.         for (; $i $end; ++$i) {
  928.             if ('void' === $returnType) {
  929.                 $fixedCode[$i] = str_replace('    return null;''    return;'$code[$i]);
  930.             } elseif ('mixed' === $returnType || '?' === $returnType[0]) {
  931.                 $fixedCode[$i] = str_replace('    return;''    return null;'$code[$i]);
  932.             } else {
  933.                 $fixedCode[$i] = str_replace('    return;'"    return $returnType!?;"$code[$i]);
  934.             }
  935.         }
  936.         if ($fixedCode !== $code) {
  937.             file_put_contents($file$fixedCode);
  938.         }
  939.     }
  940.     /**
  941.      * @param \ReflectionClass|\ReflectionMethod|\ReflectionProperty $reflector
  942.      */
  943.     private function parsePhpDoc(\Reflector $reflector): array
  944.     {
  945.         if (!$doc $reflector->getDocComment()) {
  946.             return [];
  947.         }
  948.         $tagName '';
  949.         $tagContent '';
  950.         $tags = [];
  951.         foreach (explode("\n"substr($doc3, -2)) as $line) {
  952.             $line ltrim($line);
  953.             $line ltrim($line'*');
  954.             if ('' === $line trim($line)) {
  955.                 if ('' !== $tagName) {
  956.                     $tags[$tagName][] = $tagContent;
  957.                 }
  958.                 $tagName $tagContent '';
  959.                 continue;
  960.             }
  961.             if ('@' === $line[0]) {
  962.                 if ('' !== $tagName) {
  963.                     $tags[$tagName][] = $tagContent;
  964.                     $tagContent '';
  965.                 }
  966.                 if (preg_match('{^@([-a-zA-Z0-9_:]++)(\s|$)}'$line$m)) {
  967.                     $tagName $m[1];
  968.                     $tagContent str_replace("\t"' 'ltrim(substr($line\strlen($tagName))));
  969.                 } else {
  970.                     $tagName '';
  971.                 }
  972.             } elseif ('' !== $tagName) {
  973.                 $tagContent .= ' '.str_replace("\t"' '$line);
  974.             }
  975.         }
  976.         if ('' !== $tagName) {
  977.             $tags[$tagName][] = $tagContent;
  978.         }
  979.         foreach ($tags['method'] ?? [] as $i => $method) {
  980.             unset($tags['method'][$i]);
  981.             $parts preg_split('{(\s++|\((?:[^()]*+|(?R))*\)(?: *: *[^ ]++)?|<(?:[^<>]*+|(?R))*>|\{(?:[^{}]*+|(?R))*\})}'$method, -1\PREG_SPLIT_DELIM_CAPTURE);
  982.             $returnType '';
  983.             $static 'static' === $parts[0];
  984.             for ($i $static 0null !== $p $parts[$i] ?? null$i += 2) {
  985.                 if (\in_array($p, ['''|''&''callable'], true) || \in_array(substr($returnType, -1), ['|''&'], true)) {
  986.                     $returnType .= trim($parts[$i 1] ?? '').$p;
  987.                     continue;
  988.                 }
  989.                 $signature '(' === ($parts[$i 1][0] ?? '(') ? $parts[$i 1] ?? '()' null;
  990.                 if (null === $signature && '' === $returnType) {
  991.                     $returnType $p;
  992.                     continue;
  993.                 }
  994.                 if ($static && === $i) {
  995.                     $static false;
  996.                     $returnType 'static';
  997.                 }
  998.                 if (\in_array($description trim(implode(''\array_slice($parts$i))), ['''.'], true)) {
  999.                     $description null;
  1000.                 } elseif (!preg_match('/[.!]$/'$description)) {
  1001.                     $description .= '.';
  1002.                 }
  1003.                 $tags['method'][$p] = [$static$returnType$signature ?? '()'$description];
  1004.                 break;
  1005.             }
  1006.         }
  1007.         foreach ($tags['param'] ?? [] as $i => $param) {
  1008.             unset($tags['param'][$i]);
  1009.             if (\strlen($param) !== strcspn($param'<{(')) {
  1010.                 $param preg_replace('{\(([^()]*+|(?R))*\)(?: *: *[^ ]++)?|<([^<>]*+|(?R))*>|\{([^{}]*+|(?R))*\}}'''$param);
  1011.             }
  1012.             if (false === $i strpos($param'$')) {
  1013.                 continue;
  1014.             }
  1015.             $type === $i '' rtrim(substr($param0$i), ' &');
  1016.             $param substr($param$i, (strpos($param' '$i) ?: ($i \strlen($param))) - $i 1);
  1017.             $tags['param'][$param] = $type;
  1018.         }
  1019.         foreach (['var''return'] as $k) {
  1020.             if (null === $v $tags[$k][0] ?? null) {
  1021.                 continue;
  1022.             }
  1023.             if (\strlen($v) !== strcspn($v'<{(')) {
  1024.                 $v preg_replace('{\(([^()]*+|(?R))*\)(?: *: *[^ ]++)?|<([^<>]*+|(?R))*>|\{([^{}]*+|(?R))*\}}'''$v);
  1025.             }
  1026.             $tags[$k] = substr($v0strpos($v' ') ?: \strlen($v)) ?: null;
  1027.         }
  1028.         return $tags;
  1029.     }
  1030. }