@@ -332,7 +332,7 @@ public function getTable()
332332 * @return boolean
333333 * @throws Zend_Db_Table_Row_Exception
334334 */
335- public function setTable (Zend_Db_Table_Abstract $ table = null )
335+ public function setTable (? Zend_Db_Table_Abstract $ table = null )
336336 {
337337 if ($ table == null ) {
338338 $ this ->_table = null ;
@@ -875,7 +875,7 @@ protected function _prepareReference(Zend_Db_Table_Abstract $dependentTable, Zen
875875 * @return Zend_Db_Table_Rowset_Abstract Query result from $dependentTable
876876 * @throws Zend_Db_Table_Row_Exception If $dependentTable is not a table or is not loadable.
877877 */
878- public function findDependentRowset ($ dependentTable , $ ruleKey = null , Zend_Db_Table_Select $ select = null )
878+ public function findDependentRowset ($ dependentTable , $ ruleKey = null , ? Zend_Db_Table_Select $ select = null )
879879 {
880880 $ db = $ this ->_getTable ()->getAdapter ();
881881
@@ -931,7 +931,7 @@ public function findDependentRowset($dependentTable, $ruleKey = null, Zend_Db_Ta
931931 * @return Zend_Db_Table_Row_Abstract Query result from $parentTable
932932 * @throws Zend_Db_Table_Row_Exception If $parentTable is not a table or is not loadable.
933933 */
934- public function findParentRow ($ parentTable , $ ruleKey = null , Zend_Db_Table_Select $ select = null )
934+ public function findParentRow ($ parentTable , $ ruleKey = null , ? Zend_Db_Table_Select $ select = null )
935935 {
936936 $ db = $ this ->_getTable ()->getAdapter ();
937937
@@ -999,7 +999,7 @@ public function findParentRow($parentTable, $ruleKey = null, Zend_Db_Table_Selec
999999 * @throws Zend_Db_Table_Row_Exception If $matchTable or $intersectionTable is not a table class or is not loadable.
10001000 */
10011001 public function findManyToManyRowset ($ matchTable , $ intersectionTable , $ callerRefRule = null ,
1002- $ matchRefRule = null , Zend_Db_Table_Select $ select = null )
1002+ $ matchRefRule = null , ? Zend_Db_Table_Select $ select = null )
10031003 {
10041004 $ db = $ this ->_getTable ()->getAdapter ();
10051005
0 commit comments