File "SideEffectsUnitTest.2.inc"

Full Path: /home/warrior1/public_html/themes/storefront/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Tests/Files/SideEffectsUnitTest.2.inc
File size: 307 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
include 'Somefile';

const CONSTANT1 = 1;
const CONSTANT2 = 2;

if ($something) {
    echo 'hi';
}

$var = myFunction();
print_r($var);
echo $object->define();
echo $object -> define();
Foo::define();

$c = new class extends Something{

    public function someMethod()
    {
        // ...
    }

};