Skip to content

Commit

Permalink
Add auto-generated ".fixed" file
Browse files Browse the repository at this point in the history
  • Loading branch information
fredden committed Feb 15, 2024
1 parent 3e582fe commit 392b2b5
Showing 1 changed file with 89 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
<?php

function __construct()
{
}//end __construct()

function myFunction()
{
}//end myFunction()

function ourFunction()
{
}//end ourFunction()

function yourFunction()
{
}//end yourFunction()

class TestClass
{
function __construct()
{
}//end __construct()

function myFunction()
{
}//end myFunction()

function yourFunction()
{
}//end yourFunction()

}//end class

abstract class TestClass
{
abstract function myFunction();

function ourFunction()
{
}//end ourFunction()

function yourFunction()
{
}//end yourFunction()

}//end class

interface TestClass
{
function myFunction();
function ourFunction();
function yourFunction();

}//end interface

class TestClass
{
}//end class


abstract class TestClass
{
}//end class


interface TestClass
{
}//end interface


class MyClass
{
public function myFunction();
}//end class

// Closures don't need end comments.
echo preg_replace_callback('~-([a-z])~', function ($match) { return strtoupper($match[1]); }, 'hello-world');

class TestClass
{
}//end class

enum MissingClosingComment {
}//end enum


enum HasClosingComment {
}//end enum

0 comments on commit 392b2b5

Please sign in to comment.