* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\PropertyInfo\PhpStan; /** * NameScope class adapted from PHPStan code. * * @copyright Copyright (c) 2016, PHPStan https://github.com/phpstan/phpstan-src * @copyright Copyright (c) 2016, Ondřej Mirtes * @author Baptiste Leduc * * @internal */ final class NameScope { /** * @param array $uses alias(string) => fullName(string) */ public function __construct( private string $calledClassName, private string $namespace, private array $uses = [], ) { } public function resolveStringName(string $name): string { if (str_starts_with($name, '\\')) { return ltrim($name, '\\'); } $nameParts = explode('\\', $name); $firstNamePart = $nameParts[0]; if (isset($this->uses[$firstNamePart])) { if (1 === \count($nameParts)) { return $this->uses[$firstNamePart]; } array_shift($nameParts); return \sprintf('%s\\%s', $this->uses[$firstNamePart], implode('\\', $nameParts)); } return \sprintf('%s\\%s', $this->namespace, $name); } public function resolveRootClass(): string { return $this->resolveStringName($this->calledClassName); } }