|
13 | 13 |
|
14 | 14 | namespace phpDocumentor\Reflection\DocBlock; |
15 | 15 |
|
16 | | -use function trim; |
17 | | -use function count; |
18 | | -use function strpos; |
19 | | -use function sprintf; |
20 | | -use ReflectionMethod; |
21 | | -use function get_class; |
22 | | -use function is_object; |
23 | | -use function preg_match; |
24 | | -use ReflectionNamedType; |
25 | | -use ReflectionParameter; |
26 | | -use function array_merge; |
27 | | -use function array_slice; |
28 | | -use Webmozart\Assert\Assert; |
29 | 16 | use InvalidArgumentException; |
30 | | -use function array_key_exists; |
31 | | -use function call_user_func_array; |
32 | | -use phpDocumentor\Reflection\FqsenResolver; |
33 | | -use phpDocumentor\Reflection\DocBlock\Tags\Uses; |
34 | | -use phpDocumentor\Reflection\DocBlock\Tags\Var_; |
35 | | -use phpDocumentor\Reflection\DocBlock\Tags\Mixin; |
36 | | -use phpDocumentor\Reflection\DocBlock\Tags\Param; |
37 | | -use phpDocumentor\Reflection\DocBlock\Tags\Since; |
38 | 17 | use phpDocumentor\Reflection\DocBlock\Tags\Author; |
39 | 18 | use phpDocumentor\Reflection\DocBlock\Tags\Covers; |
40 | | -use phpDocumentor\Reflection\DocBlock\Tags\Method; |
41 | | -use phpDocumentor\Reflection\DocBlock\Tags\Source; |
42 | | -use phpDocumentor\Reflection\DocBlock\Tags\Throws; |
43 | | -use phpDocumentor\Reflection\DocBlock\Tags\Generic; |
44 | | - |
45 | | -use phpDocumentor\Reflection\DocBlock\Tags\Return_; |
46 | | -use phpDocumentor\Reflection\DocBlock\Tags\Version; |
47 | | -use phpDocumentor\Reflection\DocBlock\Tags\Property; |
48 | 19 | use phpDocumentor\Reflection\DocBlock\Tags\Deprecated; |
| 20 | +use phpDocumentor\Reflection\DocBlock\Tags\Factory\Factory; |
| 21 | +use phpDocumentor\Reflection\DocBlock\Tags\Generic; |
49 | 22 | use phpDocumentor\Reflection\DocBlock\Tags\InvalidTag; |
| 23 | +use phpDocumentor\Reflection\DocBlock\Tags\Link as LinkTag; |
| 24 | +use phpDocumentor\Reflection\DocBlock\Tags\Method; |
| 25 | +use phpDocumentor\Reflection\DocBlock\Tags\Mixin; |
| 26 | +use phpDocumentor\Reflection\DocBlock\Tags\Param; |
| 27 | +use phpDocumentor\Reflection\DocBlock\Tags\Property; |
50 | 28 | use phpDocumentor\Reflection\DocBlock\Tags\PropertyRead; |
51 | 29 | use phpDocumentor\Reflection\DocBlock\Tags\PropertyWrite; |
| 30 | +use phpDocumentor\Reflection\DocBlock\Tags\Return_; |
52 | 31 | use phpDocumentor\Reflection\DocBlock\Tags\See as SeeTag; |
53 | | -use phpDocumentor\Reflection\Types\Context as TypeContext; |
54 | | -use phpDocumentor\Reflection\DocBlock\Tags\Factory\Factory; |
55 | | -use phpDocumentor\Reflection\DocBlock\Tags\Link as LinkTag; |
| 32 | +use phpDocumentor\Reflection\DocBlock\Tags\Since; |
| 33 | +use phpDocumentor\Reflection\DocBlock\Tags\Source; |
56 | 34 | use phpDocumentor\Reflection\DocBlock\Tags\TemplateCovariant; |
| 35 | +use phpDocumentor\Reflection\DocBlock\Tags\Throws; |
| 36 | +use phpDocumentor\Reflection\DocBlock\Tags\Uses; |
| 37 | +use phpDocumentor\Reflection\DocBlock\Tags\Var_; |
| 38 | +use phpDocumentor\Reflection\DocBlock\Tags\Version; |
| 39 | +use phpDocumentor\Reflection\FqsenResolver; |
| 40 | +use phpDocumentor\Reflection\Types\Context as TypeContext; |
| 41 | +use ReflectionMethod; |
| 42 | +use ReflectionNamedType; |
| 43 | +use ReflectionParameter; |
| 44 | +use Webmozart\Assert\Assert; |
| 45 | + |
| 46 | +use function array_key_exists; |
| 47 | +use function array_merge; |
| 48 | +use function array_slice; |
| 49 | +use function call_user_func_array; |
| 50 | +use function count; |
| 51 | +use function get_class; |
| 52 | +use function is_object; |
| 53 | +use function preg_match; |
| 54 | +use function sprintf; |
| 55 | +use function strpos; |
| 56 | +use function trim; |
57 | 57 |
|
58 | 58 | /** |
59 | 59 | * Creates a Tag object given the contents of a tag. |
|
0 commit comments