@@ -41,7 +41,7 @@ |
||
| 41 | 41 | */ |
| 42 | 42 | public function getCellWidth($value, Font $font) |
| 43 | 43 | { |
| 44 | - $width = 0.3 + (0.07 * $font->getSize()); |
|
| 44 | + $width = 0.3+(0.07 * $font->getSize()); |
|
| 45 | 45 | |
| 46 | 46 | foreach ($this->getSingleCharacterArray($value) as $character) { |
| 47 | 47 | if (isset($this->characterWidths[$character])) { |
@@ -59,7 +59,7 @@ |
||
| 59 | 59 | $baseWidths = self::$widths['Calibri'][$baseSize]; |
| 60 | 60 | } |
| 61 | 61 | |
| 62 | - return array_map(function ($value) use ($multiplier) { |
|
| 62 | + return array_map(function($value) use ($multiplier) { |
|
| 63 | 63 | return $value * $multiplier; |
| 64 | 64 | }, $baseWidths); |
| 65 | 65 | } |