@@ -44,6 +44,10 @@ |
||
44 | 44 | $this->description = $description; |
45 | 45 | } |
46 | 46 | |
47 | + /** |
|
48 | + * @param \Mockery\LegacyMockInterface $descriptionFactory |
|
49 | + * @param TypeContext $context |
|
50 | + */ |
|
47 | 51 | public static function create( |
48 | 52 | string $body, |
49 | 53 | ?FqsenResolver $typeResolver = null, |
@@ -47,6 +47,10 @@ |
||
47 | 47 | $this->description = $description; |
48 | 48 | } |
49 | 49 | |
50 | + /** |
|
51 | + * @param \Mockery\LegacyMockInterface $descriptionFactory |
|
52 | + * @param TypeContext $context |
|
53 | + */ |
|
50 | 54 | public static function create( |
51 | 55 | string $body, |
52 | 56 | ?DescriptionFactory $descriptionFactory = null, |
@@ -41,6 +41,10 @@ |
||
41 | 41 | $this->description = $description; |
42 | 42 | } |
43 | 43 | |
44 | + /** |
|
45 | + * @param \Mockery\LegacyMockInterface $descriptionFactory |
|
46 | + * @param TypeContext $context |
|
47 | + */ |
|
44 | 48 | public static function create( |
45 | 49 | string $body, |
46 | 50 | ?FqsenResolver $resolver = null, |
@@ -46,6 +46,9 @@ discard block |
||
46 | 46 | /** @var string|null The version vector. */ |
47 | 47 | private $version; |
48 | 48 | |
49 | + /** |
|
50 | + * @param string $version |
|
51 | + */ |
|
49 | 52 | public function __construct(?string $version = null, ?Description $description = null) |
50 | 53 | { |
51 | 54 | Assert::nullOrStringNotEmpty($version); |
@@ -54,6 +57,11 @@ discard block |
||
54 | 57 | $this->description = $description; |
55 | 58 | } |
56 | 59 | |
60 | + /** |
|
61 | + * @param string $body |
|
62 | + * @param \Mockery\LegacyMockInterface $descriptionFactory |
|
63 | + * @param TypeContext $context |
|
64 | + */ |
|
57 | 65 | public static function create( |
58 | 66 | ?string $body, |
59 | 67 | ?DescriptionFactory $descriptionFactory = null, |
@@ -43,6 +43,7 @@ |
||
43 | 43 | * @param DocBlock\Tag[] $tags |
44 | 44 | * @param Types\Context $context The context in which the DocBlock occurs. |
45 | 45 | * @param Location $location The location within the file that this DocBlock occurs in. |
46 | + * @param DocBlock\Description $description |
|
46 | 47 | */ |
47 | 48 | public function __construct( |
48 | 49 | string $summary = '', |
@@ -46,6 +46,9 @@ discard block |
||
46 | 46 | /** @var string|null The version vector. */ |
47 | 47 | private $version; |
48 | 48 | |
49 | + /** |
|
50 | + * @param string $version |
|
51 | + */ |
|
49 | 52 | public function __construct(?string $version = null, ?Description $description = null) |
50 | 53 | { |
51 | 54 | Assert::nullOrNotEmpty($version); |
@@ -55,6 +58,9 @@ discard block |
||
55 | 58 | } |
56 | 59 | |
57 | 60 | /** |
61 | + * @param string $body |
|
62 | + * @param \Mockery\LegacyMockInterface $descriptionFactory |
|
63 | + * @param TypeContext $context |
|
58 | 64 | * @return static |
59 | 65 | */ |
60 | 66 | public static function create( |
@@ -46,6 +46,9 @@ discard block |
||
46 | 46 | /** @var string|null The version vector. */ |
47 | 47 | private $version; |
48 | 48 | |
49 | + /** |
|
50 | + * @param string $version |
|
51 | + */ |
|
49 | 52 | public function __construct(?string $version = null, ?Description $description = null) |
50 | 53 | { |
51 | 54 | Assert::nullOrNotEmpty($version); |
@@ -54,6 +57,11 @@ discard block |
||
54 | 57 | $this->description = $description; |
55 | 58 | } |
56 | 59 | |
60 | + /** |
|
61 | + * @param string $body |
|
62 | + * @param \Mockery\LegacyMockInterface $descriptionFactory |
|
63 | + * @param TypeContext $context |
|
64 | + */ |
|
57 | 65 | public static function create( |
58 | 66 | ?string $body, |
59 | 67 | ?DescriptionFactory $descriptionFactory = null, |
@@ -7,7 +7,6 @@ |
||
7 | 7 | use phpDocumentor\Reflection\DocBlock\Tag; |
8 | 8 | use phpDocumentor\Reflection\DocBlock\Tags\Formatter; |
9 | 9 | use phpDocumentor\Reflection\DocBlock\Tags\Formatter\PassthroughFormatter; |
10 | -use phpDocumentor\Reflection\FqsenResolver; |
|
11 | 10 | use phpDocumentor\Reflection\DocBlock\Tags\Factory\StaticMethod; |
12 | 11 | |
13 | 12 | final class CustomServiceClass implements Tag, StaticMethod |
@@ -6,7 +6,6 @@ |
||
6 | 6 | |
7 | 7 | use phpDocumentor\Reflection\DocBlock\Tag; |
8 | 8 | use phpDocumentor\Reflection\DocBlock\Tags\Formatter; |
9 | -use phpDocumentor\Reflection\FqsenResolver; |
|
10 | 9 | use phpDocumentor\Reflection\DocBlock\Tags\Factory\StaticMethod; |
11 | 10 | |
12 | 11 | final class CustomServiceInterface implements Tag, StaticMethod |