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

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