Keep phpcs happy

This commit is contained in:
MarkBaker 2020-06-30 07:24:12 +02:00
parent fbb04c1f82
commit 1f865c84c0
2 changed files with 3 additions and 3 deletions

View File

@ -1730,8 +1730,8 @@ class Worksheet extends BIFFwriter
$iCopies = 0x01; // Number of copies $iCopies = 0x01; // Number of copies
// Order of printing pages // Order of printing pages
$fLeftToRight = $this->phpSheet->getPageSetup()->getPageOrder() == PageSetup::PAGEORDER_OVER_THEN_DOWN $fLeftToRight = $this->phpSheet->getPageSetup()->getPageOrder() === PageSetup::PAGEORDER_DOWN_THEN_OVER
? 0x0 : 0x1; ? 0x1 : 0x0;
// Page orientation // Page orientation
$fLandscape = ($this->phpSheet->getPageSetup()->getOrientation() == PageSetup::ORIENTATION_LANDSCAPE) $fLandscape = ($this->phpSheet->getPageSetup()->getOrientation() == PageSetup::ORIENTATION_LANDSCAPE)
? 0x0 : 0x1; ? 0x0 : 0x1;