I have this...
/**
* Get row from table
* @param mixed $condition Conditions for select
* @return array Row data
*/
function getRow($condition) {
...
} |
Which looks to follow the correct format as shown on the phpdocumentor web site.
But in PHPED in the code insight it shows as:
...::GetRow($condition $condition)
description: Get row from table
parameter: $condition mixed $condition Conditions for select
Shouldnt it be...
...::GetRow(mixed $condition)
description: Get row from table
parameter: mixed $condition Conditions for select