Skip to content
Snippets Groups Projects
Unverified Commit 67b57565 authored by Jonathan Smith's avatar Jonathan Smith Committed by GitHub
Browse files

test(DocComment): Add camelCase inheritDoc example to test file (#2904801)

parent 65dd5008
No related branches found
No related tags found
No related merge requests found
...@@ -125,7 +125,12 @@ function test14(array $matches, array $sub_key, $to) { ...@@ -125,7 +125,12 @@ function test14(array $matches, array $sub_key, $to) {
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
function test15_this_inheritdoc_is_correct(); function test15_lower_case_inheritdoc();
/**
* {@inheritDoc}
*/
function test15_camel_case_inheritdoc();
/** /**
* @inheritdoc * @inheritdoc
......
...@@ -134,7 +134,12 @@ function test14(array $matches, array $sub_key, $to) { ...@@ -134,7 +134,12 @@ function test14(array $matches, array $sub_key, $to) {
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
function test15_this_inheritdoc_is_correct(); function test15_lower_case_inheritdoc();
/**
* {@inheritDoc}
*/
function test15_camel_case_inheritdoc();
/** /**
* {@inheritdoc} * {@inheritdoc}
......
...@@ -33,8 +33,8 @@ class DocCommentUnitTest extends CoderSniffUnitTest ...@@ -33,8 +33,8 @@ class DocCommentUnitTest extends CoderSniffUnitTest
66 => 1, 66 => 1,
100 => 4, 100 => 4,
101 => 1, 101 => 1,
131 => 1,
136 => 1, 136 => 1,
141 => 1,
]; ];
case 'DocCommentUnitTest.1.inc': case 'DocCommentUnitTest.1.inc':
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment