File "LowercaseClassKeywordsUnitTest.inc"

Full Path: /home/warrior1/public_html/themes/storefront/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Classes/LowercaseClassKeywordsUnitTest.inc
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() {};