Skip to content
This repository has been archived by the owner on Nov 12, 2021. It is now read-only.

some tiny changes #1

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
16 changes: 8 additions & 8 deletions library/EasyBib/Form.php
Expand Up @@ -20,7 +20,7 @@
* DEALINGS IN THE SOFTWARE. * DEALINGS IN THE SOFTWARE.
* *
* PHP Version 5 * PHP Version 5
* *
* @category EasyBib * @category EasyBib
* @package Form * @package Form
* @author Michael Scholl <michael@sch0ll.de> * @author Michael Scholl <michael@sch0ll.de>
Expand All @@ -32,9 +32,9 @@
/** /**
* EasyBib_Form * EasyBib_Form
* *
* Extends Zend_Form * Extends Zend_Form
* - provides model support * - provides model support
* - provides buildBootstrapErrorDecorators method * - provides buildBootstrapErrorDecorators method
* for adding css error classes to form if not valid * for adding css error classes to form if not valid
* *
* @category EasyBib * @category EasyBib
Expand All @@ -44,11 +44,11 @@
* @version Release: @package_version@ * @version Release: @package_version@
* @link https://github.com/easybib/EasyBib_Form_Decorator * @link https://github.com/easybib/EasyBib_Form_Decorator
*/ */
*/
class EasyBib_Form extends Zend_Form class EasyBib_Form extends Zend_Form
{ {
protected $model; protected $model;

/** /**
* @return the $model * @return the $model
*/ */
Expand All @@ -57,15 +57,15 @@ public function getModel()
return $this->model; return $this->model;
} }


/** /**
* @param $model * @param $model
*/ */
public function setModel($model) public function setModel($model)
{ {
$this->model = $model; $this->model = $model;
} }


/** /**
* Build Bootstrap Error Decorators * Build Bootstrap Error Decorators
*/ */
public function buildBootstrapErrorDecorators() { public function buildBootstrapErrorDecorators() {
Expand Down