Passed
Push — master ( 694005...9024ef )
by
unknown
01:07
created
src/FrameReflower/TableCell.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
         }
109 109
 
110 110
         // Determine our height
111
-        $style_height = (float) $style->length_in_pt($style->height, $h);
111
+        $style_height = (float)$style->length_in_pt($style->height, $h);
112 112
         $content_height = $this->_calculate_content_height();
113 113
         $height = max($style_height, $content_height);
114 114
 
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
         // For table cells: Use specified width if it is greater than the
150 150
         // minimum defined by the content
151 151
         if ($fixed_width) {
152
-            $width = (float) $style->length_in_pt($width, 0);
152
+            $width = (float)$style->length_in_pt($width, 0);
153 153
             $min = max($width, $min);
154 154
             $max = $min;
155 155
         }
Please login to merge, or discard this patch.