Files
t404null/vendor/phpunit/phpunit-mock-objects/tests/_fixture/FunctionCallback.php
Glitch (t404null) 25e7853992 Fixed twitter link
2022-06-25 11:33:59 +00:00

10 lines
132 B
PHP

<?php
function functionCallback()
{
$args = func_get_args();
if ($args == ['foo', 'bar']) {
return 'pass';
}
}