@@ -88,6 +88,7 @@ discard block |
||
| 88 | 88 | |
| 89 | 89 | /** |
| 90 | 90 | * {@inheritDoc} |
| 91 | + * @param boolean $final |
|
| 91 | 92 | */ |
| 92 | 93 | public function setFinal($final) |
| 93 | 94 | { |
@@ -104,6 +105,7 @@ discard block |
||
| 104 | 105 | |
| 105 | 106 | /** |
| 106 | 107 | * {@inheritDoc} |
| 108 | + * @param boolean $abstract |
|
| 107 | 109 | */ |
| 108 | 110 | public function setAbstract($abstract) |
| 109 | 111 | { |
@@ -133,6 +133,9 @@ |
||
| 133 | 133 | return $inheritedMethods; |
| 134 | 134 | } |
| 135 | 135 | |
| 136 | + /** |
|
| 137 | + * @param string $package |
|
| 138 | + */ |
|
| 136 | 139 | public function setPackage($package) |
| 137 | 140 | { |
| 138 | 141 | parent::setPackage($package); |
@@ -74,7 +74,7 @@ |
||
| 74 | 74 | /** |
| 75 | 75 | * Returns a mock Example tag that will return example data (as provided in the class constants) when asked to. |
| 76 | 76 | * |
| 77 | - * @return m\MockInterface |
|
| 77 | + * @return Example |
|
| 78 | 78 | */ |
| 79 | 79 | private function givenExampleTagWithTestData() |
| 80 | 80 | { |
@@ -85,6 +85,9 @@ |
||
| 85 | 85 | $this->assertSame([], $descriptor->getErrors()->getAll()); |
| 86 | 86 | } |
| 87 | 87 | |
| 88 | + /** |
|
| 89 | + * @param string $description |
|
| 90 | + */ |
|
| 88 | 91 | protected function givenASeeTag($reference, $description) |
| 89 | 92 | { |
| 90 | 93 | return new DocBlock\Tags\See( |
@@ -63,6 +63,10 @@ |
||
| 63 | 63 | $this->assertSame([], $descriptor->getErrors()->getAll()); |
| 64 | 64 | } |
| 65 | 65 | |
| 66 | + /** |
|
| 67 | + * @param string $description |
|
| 68 | + * @param string $reference |
|
| 69 | + */ |
|
| 66 | 70 | protected function givenAUsesTag($description, $reference) |
| 67 | 71 | { |
| 68 | 72 | return new Uses( |
@@ -102,7 +102,7 @@ |
||
| 102 | 102 | * @param string $namespace |
| 103 | 103 | * @param string $functionName |
| 104 | 104 | * @param Argument $argumentMock |
| 105 | - * @param DocBlock|m\MockInterface $docBlockMock |
|
| 105 | + * @param DocBlock $docBlockMock |
|
| 106 | 106 | * |
| 107 | 107 | * @return Function_ |
| 108 | 108 | */ |
@@ -21,7 +21,6 @@ |
||
| 21 | 21 | use phpDocumentor\Reflection\Fqsen; |
| 22 | 22 | use phpDocumentor\Reflection\Php\Argument; |
| 23 | 23 | use phpDocumentor\Reflection\Php\Function_; |
| 24 | -use phpDocumentor\Reflection\Types\Mixed_; |
|
| 25 | 24 | |
| 26 | 25 | class FunctionAssemblerTest extends \Mockery\Adapter\Phpunit\MockeryTestCase |
| 27 | 26 | { |
@@ -217,7 +217,7 @@ discard block |
||
| 217 | 217 | /** |
| 218 | 218 | * Returns a collection with descriptor. This collection will be scanned to see if a link can be made to a file. |
| 219 | 219 | * |
| 220 | - * @param DescriptorAbstract|m\MockInterface $descriptor |
|
| 220 | + * @param m\MockInterface $descriptor |
|
| 221 | 221 | * |
| 222 | 222 | * @return Collection|m\MockInterface |
| 223 | 223 | */ |
@@ -251,7 +251,7 @@ discard block |
||
| 251 | 251 | * @param m\MockInterface $descriptor |
| 252 | 252 | * @param DescriptorAbstract $elementToLinkTo |
| 253 | 253 | * |
| 254 | - * @return DescriptorAbstract |
|
| 254 | + * @return m\MockInterface |
|
| 255 | 255 | */ |
| 256 | 256 | private function whenDescriptionContainsSeeOrLinkWithElement($descriptor, $elementToLinkTo) |
| 257 | 257 | { |
@@ -196,6 +196,9 @@ |
||
| 196 | 196 | return $collection; |
| 197 | 197 | } |
| 198 | 198 | |
| 199 | + /** |
|
| 200 | + * @param string $presentation |
|
| 201 | + */ |
|
| 199 | 202 | protected function renderLink($path, $presentation) |
| 200 | 203 | { |
| 201 | 204 | $url = false; |
@@ -189,6 +189,7 @@ discard block |
||
| 189 | 189 | * @param string $classFqsen |
| 190 | 190 | * @param string $tagName |
| 191 | 191 | * @param string $methodName |
| 192 | + * @param integer $expectedCount |
|
| 192 | 193 | * @Then class ":classFqsen" has a method named :method with exactly :expected tag :tagName |
| 193 | 194 | */ |
| 194 | 195 | public function classHasMethodWithExpectedCountTag($classFqsen, $tagName, $methodName, $expectedCount) |
@@ -439,6 +440,8 @@ discard block |
||
| 439 | 440 | |
| 440 | 441 | /** |
| 441 | 442 | * @throws Exception |
| 443 | + * @param string $classFqsen |
|
| 444 | + * @param string $methodName |
|
| 442 | 445 | */ |
| 443 | 446 | private function findMagicMethodResponse($classFqsen, $methodName): ReturnDescriptor |
| 444 | 447 | { |
@@ -13,7 +13,6 @@ discard block |
||
| 13 | 13 | namespace phpDocumentor\Behat\Contexts\Ast; |
| 14 | 14 | |
| 15 | 15 | use Behat\Behat\Context\Context; |
| 16 | -use Behat\Behat\Tester\Exception\PendingException; |
|
| 17 | 16 | use Behat\Gherkin\Node\PyStringNode; |
| 18 | 17 | use phpDocumentor\Descriptor\ArgumentDescriptor; |
| 19 | 18 | use phpDocumentor\Descriptor\ClassDescriptor; |
@@ -28,7 +27,6 @@ discard block |
||
| 28 | 27 | use phpDocumentor\Descriptor\Tag\ReturnDescriptor; |
| 29 | 28 | use phpDocumentor\Descriptor\Tag\VersionDescriptor; |
| 30 | 29 | use phpDocumentor\Descriptor\TraitDescriptor; |
| 31 | -use phpDocumentor\Reflection\Php\File; |
|
| 32 | 30 | use Webmozart\Assert\Assert; |
| 33 | 31 | |
| 34 | 32 | class ApiContext extends BaseContext implements Context |