Welcome to mirror list, hosted at ThFree Co, Russian Federation.

FunctionCallback.php « _fixture « tests « phpunit-mock-objects « phpunit « vendor - github.com/CarnetApp/CarnetNextcloud.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2353c8183bb21d7d91baeeb76b1aa70de13c52f6 (plain)
1
2
3
4
5
6
7
8
9
<?php
function functionCallback()
{
    $args = func_get_args();

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