BBnepal-Accounts/hostel/vendor/phpunit/phpunit-mock-objects/tests/_fixture/FunctionCallback.php

10 lines
132 B
PHP
Raw Normal View History

2024-07-10 12:43:19 +00:00
<?php
function functionCallback()
{
$args = func_get_args();
if ($args == ['foo', 'bar']) {
return 'pass';
}
}