Completed
Push — master ( 9ab95e...749b1f )
by De Cramer
03:50
created
src/eXpansion/Framework/Gui/Layouts/LayoutRow.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
227 227
     }
228 228
 
229 229
     /**
230
-     * @return float|int
230
+     * @return double
231 231
      */
232 232
     public function getWidth()
233 233
     {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -153,7 +153,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/eXpansion/Framework/Gui/Components/Dropdown.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -202,7 +202,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.