Completed
Push — develop ( 8c2a0b...fc6531 )
by Jaap
07:29
created
tests/features/bootstrap/Ast/ApiContext.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -178,6 +178,7 @@  discard block
 block discarded – undo
178 178
      * @param string $classFqsen
179 179
      * @param string $tagName
180 180
      * @param string $methodName
181
+     * @param integer $expectedCount
181 182
      * @Then class ":classFqsen" has a method named :method with exactly :expected tag :tagName
182 183
      */
183 184
     public function classHasMethodWithExpectedCountTag($classFqsen, $tagName, $methodName, $expectedCount)
@@ -190,7 +191,6 @@  discard block
 block discarded – undo
190 191
 
191 192
     /**
192 193
      * @param string $classFqsen
193
-     * @param string $tagName
194 194
      * @param string $methodName
195 195
      * @Then class ":classFqsen" has a method :method with argument ":argument is variadic
196 196
      */
Please login to merge, or discard this patch.
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -13,18 +13,14 @@
 block discarded – undo
13 13
 namespace phpDocumentor\Behat\Contexts\Ast;
14 14
 
15 15
 use Behat\Behat\Context\Context;
16
-use Behat\Behat\Hook\Scope\BeforeScenarioScope;
17 16
 use Behat\Gherkin\Node\PyStringNode;
18
-use phpDocumentor\Behat\Contexts\EnvironmentContext;
19 17
 use phpDocumentor\Descriptor\ArgumentDescriptor;
20 18
 use phpDocumentor\Descriptor\ClassDescriptor;
21 19
 use phpDocumentor\Descriptor\Collection;
22 20
 use phpDocumentor\Descriptor\DescriptorAbstract;
23 21
 use phpDocumentor\Descriptor\FileDescriptor;
24 22
 use phpDocumentor\Descriptor\MethodDescriptor;
25
-use phpDocumentor\Descriptor\ProjectDescriptor;
26 23
 use phpDocumentor\Descriptor\Tag\VersionDescriptor;
27
-use phpDocumentor\Reflection\DocBlock\Tag\SeeTag;
28 24
 use PHPUnit\Framework\Assert;
29 25
 
30 26
 class ApiContext extends BaseContext implements Context
Please login to merge, or discard this patch.