QuickSubForm: just an IDE hint

This commit is contained in:
Thomas Gelf 2017-09-27 08:38:04 +02:00
parent 748c3668e2
commit e40c1b83de
1 changed files with 2 additions and 1 deletions

View File

@ -15,7 +15,7 @@ abstract class QuickSubForm extends QuickBaseForm
/**
* Load the default decorators
*
* @return Zend_Form_SubForm
* @return $this
*/
public function loadDefaultDecorators()
{
@ -30,6 +30,7 @@ abstract class QuickSubForm extends QuickBaseForm
->addDecorator('Fieldset')
->addDecorator('DtDdWrapper');
}
return $this;
}
}