File tree Expand file tree Collapse file tree 2 files changed +15
-15
lines changed
tests/phpDocumentor/Reflection/DocBlock/Tag Expand file tree Collapse file tree 2 files changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -28,9 +28,9 @@ class ParamTagTest extends \PHPUnit_Framework_TestCase
28
28
*
29
29
* @param string $type
30
30
* @param string $content
31
- * @param string $extracted_type
32
- * @param string $extracted_variable_name
33
- * @param string $extracted_description
31
+ * @param string $extractedType
32
+ * @param string $extractedVarName
33
+ * @param string $extractedDescription
34
34
*
35
35
* @covers \phpDocumentor\Reflection\DocBlock\Tag\ParamTag::__construct
36
36
*
@@ -41,15 +41,15 @@ class ParamTagTest extends \PHPUnit_Framework_TestCase
41
41
public function testConstructorParsesInputsIntoCorrectFields (
42
42
$ type ,
43
43
$ content ,
44
- $ extracted_type ,
45
- $ extracted_variable_name ,
46
- $ extracted_description
44
+ $ extractedType ,
45
+ $ extractedVarName ,
46
+ $ extractedDescription
47
47
) {
48
48
$ tag = new ParamTag ($ type , $ content );
49
49
50
- $ this ->assertEquals ($ extracted_type , $ tag ->getTypes ());
51
- $ this ->assertEquals ($ extracted_variable_name , $ tag ->getVariableName ());
52
- $ this ->assertEquals ($ extracted_description , $ tag ->getDescription ());
50
+ $ this ->assertEquals ($ extractedType , $ tag ->getTypes ());
51
+ $ this ->assertEquals ($ extractedVarName , $ tag ->getVariableName ());
52
+ $ this ->assertEquals ($ extractedDescription , $ tag ->getDescription ());
53
53
}
54
54
55
55
/**
Original file line number Diff line number Diff line change @@ -27,8 +27,8 @@ class ReturnTagTest extends ParamTagTest
27
27
* understand the Return DocBlock.
28
28
*
29
29
* @param string $content
30
- * @param string $extracted_type
31
- * @param string $extracted_description
30
+ * @param string $extractedType
31
+ * @param string $extractedDescription
32
32
*
33
33
* @covers \phpDocumentor\Reflection\DocBlock\Tag\ReturnTag::__construct
34
34
*
@@ -38,13 +38,13 @@ class ReturnTagTest extends ParamTagTest
38
38
*/
39
39
public function testConstructorParsesInputsIntoCorrectFields (
40
40
$ content ,
41
- $ extracted_type ,
42
- $ extracted_description
41
+ $ extractedType ,
42
+ $ extractedDescription
43
43
) {
44
44
$ tag = new ReturnTag ('return ' , $ content );
45
45
46
- $ this ->assertEquals ($ extracted_type , $ tag ->getTypes ());
47
- $ this ->assertEquals ($ extracted_description , $ tag ->getDescription ());
46
+ $ this ->assertEquals ($ extractedType , $ tag ->getTypes ());
47
+ $ this ->assertEquals ($ extractedDescription , $ tag ->getDescription ());
48
48
}
49
49
50
50
/**
You can’t perform that action at this time.
0 commit comments