/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/Console/Attribute/Argument.php
127 строк
5 KB
Robin Chalas
[Console] Allow object as default value for input options and arguments
26 янв 2026, 19:34
Не верифицирован
26 янв 2026, 19:34
c5024e8
Код
Авторство
О чём код?
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Attribute; use Symfony\Component\Console\Attribute\Reflection\ReflectionMember; use Symfony\Component\Console\Completion\CompletionInput; use Symfony\Component\Console\Completion\Suggestion; use Symfony\Component\Console\Exception\LogicException; use Symfony\Component\Console\Input\InputArgument; use Symfony\Component\String\UnicodeString; #[\Attribute(\Attribute::TARGET_PARAMETER | \Attribute::TARGET_PROPERTY)] class Argument { public mixed $default = null; public array|\Closure $suggestedValues; /** * @internal * * @var string|class-string<\BackedEnum> */ public string $typeName = ''; private ?int $mode = null; private ?InteractiveAttributeInterface $interactiveAttribute = null; /** * Represents a console command <argument> definition. * * If unset, the `name` value will be inferred from the parameter definition. * * @param array<string|Suggestion>|callable(CompletionInput):list<string|Suggestion> $suggestedValues The values used for input completion */ public function __construct( public string $description = '', public string $name = '', array|callable $suggestedValues = [], ) { $this->suggestedValues = \is_callable($suggestedValues) ? $suggestedValues(...) : $suggestedValues; } /** * @internal */ public static function tryFrom(\ReflectionParameter|\ReflectionProperty $member): ?self { $reflection = new ReflectionMember($member); if (!$self = $reflection->getAttribute(self::class)) { return null; } $type = $reflection->getType(); $name = $reflection->getName(); if (!$type instanceof \ReflectionNamedType) { throw new LogicException(\sprintf('The %s "$%s" of "%s" must have a named type. Untyped, Union or Intersection types are not supported for command arguments.', $reflection->getMemberName(), $name, $reflection->getSourceName())); } $self->typeName = $type->getName(); if (!$self->name) { $self->name = (new UnicodeString($name))->kebab(); } $self->default = $reflection->hasDefaultValue() ? $reflection->getDefaultValue() : null; $isOptional = $reflection->hasDefaultValue() || $reflection->isNullable() || $reflection->isVariadic(); $self->mode = $isOptional ? InputArgument::OPTIONAL : InputArgument::REQUIRED; if ('array' === $self->typeName || $reflection->isVariadic()) { $self->mode |= InputArgument::IS_ARRAY; } if (\is_array($self->suggestedValues) && !\is_callable($self->suggestedValues) && 2 === \count($self->suggestedValues) && ($instance = $reflection->getSourceThis()) && $instance::class === $self->suggestedValues[0] && \is_callable([$instance, $self->suggestedValues[1]])) { // In case that the callback is declared as a static method `[Foo::class, 'methodName']` - yet it is not callable, // while non-static method `[Foo $instance, 'methodName']` would be callable, we transform the callback on the fly into a non-static version. $self->suggestedValues = [$instance, $self->suggestedValues[1]]; } if (is_subclass_of($self->typeName, \BackedEnum::class) && !$self->suggestedValues) { $self->suggestedValues = array_column($self->typeName::cases(), 'value'); } $self->interactiveAttribute = Ask::tryFrom($member, $self->name) ?? AskChoice::tryFrom($member, $self->name); if ($self->interactiveAttribute && $isOptional) { throw new LogicException(\sprintf('The %s "$%s" argument of "%s" cannot be both interactive and optional.', $reflection->getMemberName(), $self->name, $reflection->getSourceName())); } return $self; } /** * @internal */ public function toInputArgument(): InputArgument { $suggestedValues = \is_callable($this->suggestedValues) ? ($this->suggestedValues)(...) : $this->suggestedValues; return new InputArgument($this->name, $this->mode, $this->description, $this->default, $suggestedValues); } /** * @internal */ public function getInteractiveAttribute(): ?InteractiveAttributeInterface { return $this->interactiveAttribute; } /** * @internal */ public function isRequired(): bool { return InputArgument::REQUIRED === (InputArgument::REQUIRED & $this->mode); } }