Hopefully a final phpcs fix before I start looking at how to run a pre-commit hook on Windows 10
This commit is contained in:
parent
e89196f65b
commit
cf6769eab1
|
@ -897,7 +897,7 @@ class Xml extends BaseReader
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
private function pageSetup(SimpleXMLElement $xmlX, array $namespaces, \stdClass $printDefaults): \stdClass
|
private function pageSetup(SimpleXMLElement $xmlX, array $namespaces, stdClass $printDefaults): stdClass
|
||||||
{
|
{
|
||||||
if (isset($xmlX->WorksheetOptions->PageSetup)) {
|
if (isset($xmlX->WorksheetOptions->PageSetup)) {
|
||||||
foreach ($xmlX->WorksheetOptions->PageSetup as $pageSetupData) {
|
foreach ($xmlX->WorksheetOptions->PageSetup as $pageSetupData) {
|
||||||
|
|
|
@ -12,6 +12,7 @@ class PageSetupTest extends TestCase
|
||||||
private const MARGIN_PRECISION = 0.000001;
|
private const MARGIN_PRECISION = 0.000001;
|
||||||
|
|
||||||
private const MARGIN_UNIT_CONVERSION = 2.54; // Inches to cm
|
private const MARGIN_UNIT_CONVERSION = 2.54; // Inches to cm
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var Spreadsheet
|
* @var Spreadsheet
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue