Code Duplication    Length = 3-3 lines in 3 locations

src/PhpSpreadsheet/Writer/HTML.php 3 locations

@@ 363-365 (lines=3) @@
360
        if ($properties->getTitle() > '') {
361
            $html .= '      <meta name="title" content="' . htmlspecialchars($properties->getTitle()) . '" />' . PHP_EOL;
362
        }
363
        if ($properties->getDescription() > '') {
364
            $html .= '      <meta name="description" content="' . htmlspecialchars($properties->getDescription()) . '" />' . PHP_EOL;
365
        }
366
        if ($properties->getSubject() > '') {
367
            $html .= '      <meta name="subject" content="' . htmlspecialchars($properties->getSubject()) . '" />' . PHP_EOL;
368
        }
@@ 375-377 (lines=3) @@
372
        if ($properties->getCategory() > '') {
373
            $html .= '      <meta name="category" content="' . htmlspecialchars($properties->getCategory()) . '" />' . PHP_EOL;
374
        }
375
        if ($properties->getCompany() > '') {
376
            $html .= '      <meta name="company" content="' . htmlspecialchars($properties->getCompany()) . '" />' . PHP_EOL;
377
        }
378
        if ($properties->getManager() > '') {
379
            $html .= '      <meta name="manager" content="' . htmlspecialchars($properties->getManager()) . '" />' . PHP_EOL;
380
        }
@@ 378-380 (lines=3) @@
375
        if ($properties->getCompany() > '') {
376
            $html .= '      <meta name="company" content="' . htmlspecialchars($properties->getCompany()) . '" />' . PHP_EOL;
377
        }
378
        if ($properties->getManager() > '') {
379
            $html .= '      <meta name="manager" content="' . htmlspecialchars($properties->getManager()) . '" />' . PHP_EOL;
380
        }
381
382
        if ($pIncludeStyles) {
383
            $html .= $this->generateStyles(true);