File "FunctionCallback.php"

Full Path: /www/wwwroot/shphe-en.com/smsapi/api_sdk/vendor/phpunit/phpunit-mock-objects/tests/_fixture/FunctionCallback.php
File size: 137 bytes
MIME-type: --
Charset: utf-8

<?php
function functionCallback()
{
    $args = func_get_args();

    if ($args == array('foo', 'bar')) {
        return 'pass';
    }
}