I have a function which returns something like the following structure:
array('form' => $form, 'options' => $options)
How to correctly format this return value in function comment?
My guess is:
@return array('form' => CForm, 'options' => array) ... comment ...
Any suggestions?