Skip to content

Commit 392b2b5

Browse files
committed
Add auto-generated ".fixed" file
1 parent 3e582fe commit 392b2b5

File tree

1 file changed

+89
-0
lines changed

1 file changed

+89
-0
lines changed
Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
<?php
2+
3+
function __construct()
4+
{
5+
}//end __construct()
6+
7+
function myFunction()
8+
{
9+
}//end myFunction()
10+
11+
function ourFunction()
12+
{
13+
}//end ourFunction()
14+
15+
function yourFunction()
16+
{
17+
}//end yourFunction()
18+
19+
class TestClass
20+
{
21+
function __construct()
22+
{
23+
}//end __construct()
24+
25+
function myFunction()
26+
{
27+
}//end myFunction()
28+
29+
function yourFunction()
30+
{
31+
}//end yourFunction()
32+
33+
}//end class
34+
35+
abstract class TestClass
36+
{
37+
abstract function myFunction();
38+
39+
function ourFunction()
40+
{
41+
}//end ourFunction()
42+
43+
function yourFunction()
44+
{
45+
}//end yourFunction()
46+
47+
}//end class
48+
49+
interface TestClass
50+
{
51+
function myFunction();
52+
function ourFunction();
53+
function yourFunction();
54+
55+
}//end interface
56+
57+
class TestClass
58+
{
59+
}//end class
60+
61+
62+
abstract class TestClass
63+
{
64+
}//end class
65+
66+
67+
interface TestClass
68+
{
69+
}//end interface
70+
71+
72+
class MyClass
73+
{
74+
public function myFunction();
75+
}//end class
76+
77+
// Closures don't need end comments.
78+
echo preg_replace_callback('~-([a-z])~', function ($match) { return strtoupper($match[1]); }, 'hello-world');
79+
80+
class TestClass
81+
{
82+
}//end class
83+
84+
enum MissingClosingComment {
85+
}//end enum
86+
87+
88+
enum HasClosingComment {
89+
}//end enum

0 commit comments

Comments
 (0)