Keep phpcs happy
This commit is contained in:
parent
fbb04c1f82
commit
1f865c84c0
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue