File "ValidFunctionNameUnitTest.inc"

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

<?php
function getSomeValue() {}
function parseMyDSN() {}
function get_some_value() {}
function getSomeValue_Again() {}
function _getSomeValue() {}
function _parseMyDSN() {}
function _get_some_value() {}
function _getSomeValue_Again() {}

function __construct() {}
function __destruct() {}
function __myFunction() {}
function __my_function() {}

function XMLParser() {}
function xmlParser() {}

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

/* @codingStandardsIgnoreStart */
class MyClass
{
    /* @codingStandardsIgnoreEnd */
    public function __construct() {}
}
?>