]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - tests/PHPUnit/Tests/_files/FunctionCallback.php
Added unit tests.
[Github/sugarcrm.git] / tests / PHPUnit / Tests / _files / FunctionCallback.php
1 <?php
2 function functionCallback()
3 {
4     $args = func_get_args();
5
6     if ($args == array('foo', 'bar')) {
7         return 'pass';
8     }
9 }
10 ?>