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

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