File "LowercaseClassKeywordsUnitTest.inc.fixed"

Full Path: /home/warrior1/public_html/wp-content-20241001222009/themes/storefront/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Classes/LowercaseClassKeywordsUnitTest.inc.fixed
File size: 261 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
abstract class MyClass extends MyClass {}
final class MyClass implements MyInterface {}
interface MyInterface {}
trait MyTrait {}
enum MyEnum implements Colorful {}

class MyClass
{
    var $myVar = null;
    const myConst = true;
}

$a = new class() {};