Skip to content

Commit 01ed558

Browse files
committed
Try Again
1 parent e1d13f4 commit 01ed558

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/php.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393
with:
9494
php-version: ${{ matrix.php }}
9595
extensions: dom, gd, mbstring, xml, zip
96-
coverage: ${{ (matrix.php == '7.3') && 'xdebug' || 'none' }}
96+
coverage: ${{ (matrix.php == '8.3') && 'xdebug' || 'none' }}
9797

9898
- uses: actions/checkout@v2
9999

src/PhpWord/Shared/XMLWriter.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,14 +101,13 @@ public function __destruct()
101101
@unlink($this->tempFileName);
102102
}
103103

104-
/*
104+
/** @codeCoverageIgnore */
105105
public function __wakeup(): void
106106
{
107107
$this->tempFileName = '';
108108

109109
throw new WordException('Unserialize not permitted2');
110110
}
111-
*/
112111

113112
/**
114113
* Unserialization can cause security exploit - don't allow it.

0 commit comments

Comments
 (0)