remove trailing whitespaces

This commit is contained in:
troosan 2021-02-08 00:59:44 +01:00 committed by GitHub
parent 486321bb02
commit cba1edc9e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -636,12 +636,12 @@ class HtmlTest extends AbstractWebServerEmbeddedTest
/**
* Tests checkbox input field
*/
public function testInputCheckbox()
public function testInputCheckbox()
{
$phpWord = new \PhpOffice\PhpWord\PhpWord();
$section = $phpWord->addSection();
$html = '<input type="checkbox" checked="true" /><input type="checkbox" />';
Html::addHtml($section, $html);
Html::addHtml($section, $html);
$doc = TestHelperDOCX::getDocument($phpWord, 'Word2007');