Skip to content

Commit c58ea5e

Browse files
authored
Update PreserveText.php - CS Fix
1 parent 6848f80 commit c58ea5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/PhpWord/Writer/RTF/Element/PreserveText.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public function write()
4444
$content .= $this->writeOpening();
4545
$content .= '{';
4646
$content .= $this->writeFontStyle();
47-
if(is_array($element->getText())) {
47+
if (is_array($element->getText())) {
4848
foreach ($element->getText() as $text) {
4949
if (preg_match('/[{}]/', $text) == 1) {
5050
$text = str_replace(['{', '}'], '', $text);

0 commit comments

Comments
 (0)