null Module_Database_Result::__call( )
8788899091929394959697public
function
__call(
$m
,
$v
)
{
if
( method_exists(
$this
->_result ,
$m
) )
{
return
call_user_func_array(
array
(
$this
->_result,
$m
),
$v
);
}
else
{
throw
new
Exception(
'method not found in '
. get_class(
$this
));
}
}