Completed
Pull Request — develop (#84)
by
unknown
19:49
created
src/PhpSpreadsheet/Writer/Html.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -322,7 +322,7 @@  discard block
 block discarded – undo
322 322
      */
323 323
     public function setGenerateSheetNavigationBlock($pValue = true)
324 324
     {
325
-        $this->generateSheetNavigationBlock = (bool)$pValue;
325
+        $this->generateSheetNavigationBlock = (bool) $pValue;
326 326
 
327 327
         return $this;
328 328
     }
@@ -993,7 +993,7 @@  discard block
 block discarded – undo
993 993
         if ($textAlign = $this->mapHAlign($pStyle->getHorizontal())) {
994 994
             $css['text-align'] = $textAlign;
995 995
             if (in_array($textAlign, ['left', 'right'])) {
996
-                $css['padding-' . $textAlign] = (string)((int)$pStyle->getIndent() * 9) . 'px';
996
+                $css['padding-' . $textAlign] = (string) ((int) $pStyle->getIndent() * 9) . 'px';
997 997
             }
998 998
         }
999 999
 
Please login to merge, or discard this patch.