fof/src/470a08ee-6b31-4a2b-98d9-5b64757a3b34/code.power
2023-10-09 11:38:00 +02:00

15 lines
340 B
Plaintext

/**
*
* Magic call to intercept any function pass to it.
*
* @param string $func The function to call.
*
* @param array $args Arguments passed to the function.
*
* @return mixed The result of the function call.
*
*/
public function __call($func, $args)
{
return call_user_func_array($func, $args);
}