@@ -134,7 +134,7 @@ discard block |
||
| 134 | 134 | } |
| 135 | 135 | |
| 136 | 136 | /** |
| 137 | - * @param float|int $startY |
|
| 137 | + * @param double $startY |
|
| 138 | 138 | */ |
| 139 | 139 | public function setStartY($startY) |
| 140 | 140 | { |
@@ -227,7 +227,7 @@ discard block |
||
| 227 | 227 | } |
| 228 | 228 | |
| 229 | 229 | /** |
| 230 | - * @return float|int |
|
| 230 | + * @return double |
|
| 231 | 231 | */ |
| 232 | 232 | public function getWidth() |
| 233 | 233 | { |
@@ -153,7 +153,7 @@ |
||
| 153 | 153 | $frame->setAlign($this->hAlign, $this->vAlign); |
| 154 | 154 | $frame->setPosition($this->posX, $this->posy); |
| 155 | 155 | $frame->addClasses($this->frameClasses); |
| 156 | - $frame->setSize($this->getWidth(), $this->getHeight()+4); |
|
| 156 | + $frame->setSize($this->getWidth(), $this->getHeight() + 4); |
|
| 157 | 157 | |
| 158 | 158 | $startY = $this->startY; |
| 159 | 159 | |
@@ -202,7 +202,7 @@ |
||
| 202 | 202 | $entry->setPosition(900, 900) |
| 203 | 203 | ->setName($this->name); |
| 204 | 204 | |
| 205 | - $frameOptions = new LayoutRow(0, -$this->height,[],0, $this->height); |
|
| 205 | + $frameOptions = new LayoutRow(0, -$this->height, [], 0, $this->height); |
|
| 206 | 206 | $frameOptions->setStartY($this->height * -0.5); |
| 207 | 207 | $frameOptions->addClass('uiDropdownSelect'); |
| 208 | 208 | |