class Target
Same name in this branch
- 11.1.x vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation/Target.php \Doctrine\Common\Annotations\Annotation\Target
An attribute to tell how a dependency is used and hint named autowiring aliases.
@author Nicolas Grekas <p@tchwork.com>
Hierarchy
- class \Symfony\Component\DependencyInjection\Attribute\Target
Expanded class hierarchy of Target
4 files declare their use of Target
- AutowirePass.php in vendor/
symfony/ dependency-injection/ Compiler/ AutowirePass.php - ContainerBuilder.php in vendor/
symfony/ dependency-injection/ ContainerBuilder.php - RegisterControllerArgumentLocatorsPass.php in vendor/
symfony/ http-kernel/ DependencyInjection/ RegisterControllerArgumentLocatorsPass.php - ResolveBindingsPass.php in vendor/
symfony/ dependency-injection/ Compiler/ ResolveBindingsPass.php
14 string references to 'Target'
- ContentTranslationController::overview in core/
modules/ content_translation/ src/ Controller/ ContentTranslationController.php - Builds the translations overview page.
- ConvertLogTypes::migrate in vendor/
phpunit/ phpunit/ src/ TextUI/ Configuration/ Xml/ Migration/ Migrations/ ConvertLogTypes.php - CoverageCloverToReport::toReportFormat in vendor/
phpunit/ phpunit/ src/ TextUI/ Configuration/ Xml/ Migration/ Migrations/ CoverageCloverToReport.php - CoverageCrap4jToReport::toReportFormat in vendor/
phpunit/ phpunit/ src/ TextUI/ Configuration/ Xml/ Migration/ Migrations/ CoverageCrap4jToReport.php - CoverageHtmlToReport::toReportFormat in vendor/
phpunit/ phpunit/ src/ TextUI/ Configuration/ Xml/ Migration/ Migrations/ CoverageHtmlToReport.php
File
-
vendor/
symfony/ dependency-injection/ Attribute/ Target.php, line 22
Namespace
Symfony\Component\DependencyInjection\AttributeView source
final class Target {
/**
* @param string|null $name The name of the target autowiring alias
*/
public function __construct(?string $name = null) {
}
public function getParsedName() : string {
if (null === $this->name) {
throw new LogicException(\sprintf('Cannot parse the name of a #[Target] attribute that has not been resolved. Did you forget to call "%s::parseName()"?', __CLASS__));
}
return lcfirst(str_replace(' ', '', ucwords(preg_replace('/[^a-zA-Z0-9\\x7f-\\xff]++/', ' ', $this->name))));
}
public static function parseName(\ReflectionParameter $parameter, ?self &$attribute = null, ?string &$parsedName = null) : string {
$attribute = null;
if (!($target = $parameter->getAttributes(self::class)[0] ?? null)) {
$parsedName = (new self($parameter->name))
->getParsedName();
return $parameter->name;
}
$attribute = $target->newInstance();
$name = $attribute->name ??= $parameter->name;
$parsedName = $attribute->getParsedName();
if (!preg_match('/^[a-zA-Z_\\x7f-\\xff]/', $parsedName)) {
if (($function = $parameter->getDeclaringFunction()) instanceof \ReflectionMethod) {
$function = $function->class . '::' . $function->name;
}
else {
$function = $function->name;
}
throw new InvalidArgumentException(\sprintf('Invalid #[Target] name "%s" on parameter "$%s" of "%s()": the first character must be a letter.', $name, $parameter->name, $function));
}
return preg_match('/^[a-zA-Z0-9_\\x7f-\\xff]++$/', $name) ? $name : $parsedName;
}
}
Members
Title Sort descending | Modifiers | Object type | Summary |
---|---|---|---|
Target::getParsedName | public | function | |
Target::parseName | public static | function | |
Target::__construct | public | function |