File tree Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -4,22 +4,22 @@ namespace PHP_CodeSniffer\Tests\Core\File;
44
55class testFECNClass {}
66
7- /* testExtendedClass */
7+ /* testExtendsUnqualifiedClass */
88class testFECNExtendedClass extends testFECNClass {}
99
10- /* testNamespacedClass */
10+ /* testExtendsFullyQualifiedClass */
1111class testFECNNamespacedClass extends \PHP_CodeSniffer \Tests \Core \File \testFECNClass {}
1212
1313/* testNonExtendedClass */
1414class testFECNNonExtendedClass {}
1515
16- /* testInterface */
16+ /* testNonExtendedInterface */
1717interface testFECNInterface {}
1818
19- /* testInterfaceThatExtendsInterface */
19+ /* testInterfaceExtendsUnqualifiedInterface */
2020interface testInterfaceThatExtendsInterface extends testFECNInterface{}
2121
22- /* testInterfaceThatExtendsFQCNInterface */
22+ /* testInterfaceExtendsFullyQualifiedInterface */
2323interface testInterfaceThatExtendsFQCNInterface extends \PHP_CodeSniffer \Tests \Core \File \testFECNInterface{}
2424
2525/* testNestedExtendedClass */
Original file line number Diff line number Diff line change @@ -51,27 +51,27 @@ public function dataExtendedClass()
5151 {
5252 return [
5353 [
54- '/* testExtendedClass */ ' ,
54+ '/* testExtendsUnqualifiedClass */ ' ,
5555 'testFECNClass ' ,
5656 ],
5757 [
58- '/* testNamespacedClass */ ' ,
58+ '/* testExtendsFullyQualifiedClass */ ' ,
5959 '\PHP_CodeSniffer\Tests\Core\File\testFECNClass ' ,
6060 ],
6161 [
6262 '/* testNonExtendedClass */ ' ,
6363 false ,
6464 ],
6565 [
66- '/* testInterface */ ' ,
66+ '/* testNonExtendedInterface */ ' ,
6767 false ,
6868 ],
6969 [
70- '/* testInterfaceThatExtendsInterface */ ' ,
70+ '/* testInterfaceExtendsUnqualifiedInterface */ ' ,
7171 'testFECNInterface ' ,
7272 ],
7373 [
74- '/* testInterfaceThatExtendsFQCNInterface */ ' ,
74+ '/* testInterfaceExtendsFullyQualifiedInterface */ ' ,
7575 '\PHP_CodeSniffer\Tests\Core\File\testFECNInterface ' ,
7676 ],
7777 [
You can’t perform that action at this time.
0 commit comments