|
| 1 | +<?php |
| 2 | + |
| 3 | +declare(strict_types=1); |
| 4 | + |
| 5 | +namespace TypeLang\PHPDoc\DocBlock\Tag\PackageTag; |
| 6 | + |
| 7 | +use TypeLang\Parser\Node\Stmt\NamedTypeNode; |
| 8 | +use TypeLang\Parser\Parser as TypesParser; |
| 9 | +use TypeLang\Parser\ParserInterface as TypesParserInterface; |
| 10 | +use TypeLang\PHPDoc\DocBlock\Tag\Factory\TagFactoryInterface; |
| 11 | +use TypeLang\PHPDoc\Parser\Content\Stream; |
| 12 | +use TypeLang\PHPDoc\Parser\Content\TypeReader; |
| 13 | +use TypeLang\PHPDoc\Parser\Description\DescriptionParserInterface; |
| 14 | + |
| 15 | +/** |
| 16 | + * This class is responsible for creating "`@subpackage`" tags. |
| 17 | + * |
| 18 | + * See {@see SubPackageTag} for details about this tag. |
| 19 | + */ |
| 20 | +final class SubPackageTagFactory implements TagFactoryInterface |
| 21 | +{ |
| 22 | + public function __construct( |
| 23 | + private readonly TypesParserInterface $parser = new TypesParser(tolerant: true), |
| 24 | + ) {} |
| 25 | + |
| 26 | + public function create(string $tag, string $content, DescriptionParserInterface $descriptions): SubPackageTag |
| 27 | + { |
| 28 | + $stream = new Stream($tag, $content); |
| 29 | + |
| 30 | + $type = $stream->apply(new TypeReader($this->parser)); |
| 31 | + |
| 32 | + if (!$type instanceof NamedTypeNode) { |
| 33 | + throw $stream->toException(\sprintf( |
| 34 | + 'Tag @%s expects the namespace to be defined', |
| 35 | + $stream->tag, |
| 36 | + )); |
| 37 | + } |
| 38 | + |
| 39 | + if ($type->arguments !== null) { |
| 40 | + throw $stream->toException(\sprintf( |
| 41 | + 'Tag @%s namespace cannot contain template arguments', |
| 42 | + $stream->tag, |
| 43 | + )); |
| 44 | + } |
| 45 | + |
| 46 | + if ($type->fields !== null) { |
| 47 | + throw $stream->toException(\sprintf( |
| 48 | + 'Tag @%s namespace cannot contain shape fields', |
| 49 | + $stream->tag, |
| 50 | + )); |
| 51 | + } |
| 52 | + |
| 53 | + return new SubPackageTag( |
| 54 | + name: $tag, |
| 55 | + package: $type->name, |
| 56 | + description: $stream->toOptionalDescription($descriptions), |
| 57 | + ); |
| 58 | + } |
| 59 | +} |
0 commit comments