File "GlobalFunctionUnitTest.inc"

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

<?php
function func1() {}

class MyClass
{
    function func1() {}
}

interface MyInterface
{
    function func1() {}
}

function __autoload($class) {}

echo preg_replace_callback('~-([a-z])~', function ($match) { return strtoupper($match[1]); }, 'hello-world');
?>