@@ -174,9 +174,12 @@ discard block |
||
174 | 174 | * Stored in ISO 8601 format. |
175 | 175 | * |
176 | 176 | * @param string|Zend_Date $<?= $column->getName () . "\n" ?> |
177 | -<?php else: ?> |
|
177 | +<?php else { |
|
178 | + : ?> |
|
178 | 179 | * @param <?= $column->getType () ?> $<?= $column->getName () . "\n" ?> |
179 | -<?php endif; ?> |
|
180 | +<?php endif; |
|
181 | +} |
|
182 | +?> |
|
180 | 183 | * @return <?= $className . "\n" ?> |
181 | 184 | */ |
182 | 185 | public function set<?= \Classes\Maker\AbstractMaker::getClassName ( $column->getName () ) ?>( $<?= $column->getName ( |
@@ -236,9 +239,12 @@ discard block |
||
236 | 239 | <?php if ( $column->equalType ( 'date' ) or $column->equalType ( 'datetime' ) or $column->equalType ( 'timestamp' ) ): ?> |
237 | 240 | * @param boolean $returnZendDate |
238 | 241 | * @return Zend_Date|null|string Zend_Date representation of this datetime if enabled, or ISO 8601 string if not |
239 | -<?php else: ?> |
|
242 | +<?php else { |
|
243 | + : ?> |
|
240 | 244 | * @return <?= $column->getType () . "\n" ?> |
241 | -<?php endif; ?> |
|
245 | +<?php endif; |
|
246 | +} |
|
247 | +?> |
|
242 | 248 | */ |
243 | 249 | public function get<?= \Classes\Maker\AbstractMaker::getClassName ( |
244 | 250 | $column->getName () |