mirror of
https://github.com/espocrm/espocrm.git
synced 2026-07-01 08:26:04 +00:00
10 lines
137 B
PHP
10 lines
137 B
PHP
<?php
|
|
function functionCallback()
|
|
{
|
|
$args = func_get_args();
|
|
|
|
if ($args == array('foo', 'bar')) {
|
|
return 'pass';
|
|
}
|
|
}
|