fix check style warning

This commit is contained in:
troosan 2018-11-20 22:40:54 +01:00
parent 1c20a4ed22
commit c12f98f69a
1 changed files with 1 additions and 1 deletions

View File

@ -515,7 +515,7 @@ class TemplateProcessor
preg_match($pattern, $contentTypes, $matches);
return (array_key_exists(1, $matches) ? $matches[1] : 'word/document.xml');
return array_key_exists(1, $matches) ? $matches[1] : 'word/document.xml';
}
/**