ZF-4101: Undocumented parameter in Zend_Db_Table_Row_Abstract::findDependentRowset()
Description
There is undocumented function parameter in
PHPDoc block misses 3 parameter of Zend_Db_Table_Row_Abstract :: findDependentRowset() (line 788). Missing parameter is $select
/**
* Query a dependent table to retrieve rows matching the current row.
*
* @param string|Zend_Db_Table_Abstract $dependentTable
* @param string OPTIONAL $ruleKey
* @return Zend_Db_Table_Rowset_Abstract Query result from $dependentTable
* @throws Zend_Db_Table_Row_Exception If $dependentTable is not a table or is not loadable.
*/
public function findDependentRowset($dependentTable, $ruleKey = null, Zend_Db_Table_Select $select = null)
Comments
Posted by julien PAULI (doctorrock83) on 2008-08-29T08:00:51.000+0000
Patch applied at r11124
Posted by Alexander Veremyev (alexander) on 2008-08-30T13:44:24.000+0000
The issue also has cs-11122 (docblock correction) and cs-11126 (merging into release-1.6 branch) commits.