Skip to content

Commit c12f98f

Browse files
committed
fix check style warning
1 parent 1c20a4e commit c12f98f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/PhpWord/TemplateProcessor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -515,7 +515,7 @@ protected function getMainPartName()
515515

516516
preg_match($pattern, $contentTypes, $matches);
517517

518-
return (array_key_exists(1, $matches) ? $matches[1] : 'word/document.xml');
518+
return array_key_exists(1, $matches) ? $matches[1] : 'word/document.xml';
519519
}
520520

521521
/**

0 commit comments

Comments
 (0)