Code Duplication    Length = 2-2 lines in 3 locations

app/Vendor/PHPExcel/PHPExcel/Writer/HTML.php 3 locations

@@ 325-326 (lines=2) @@
322
			$html .= '	  <meta name="author" content="' . htmlspecialchars($properties->getCreator()) . '" />' . PHP_EOL;
323
		if ($properties->getTitle() > '')
324
			$html .= '	  <meta name="title" content="' . htmlspecialchars($properties->getTitle()) . '" />' . PHP_EOL;
325
		if ($properties->getDescription() > '')
326
			$html .= '	  <meta name="description" content="' . htmlspecialchars($properties->getDescription()) . '" />' . PHP_EOL;
327
		if ($properties->getSubject() > '')
328
			$html .= '	  <meta name="subject" content="' . htmlspecialchars($properties->getSubject()) . '" />' . PHP_EOL;
329
		if ($properties->getKeywords() > '')
@@ 333-334 (lines=2) @@
330
			$html .= '	  <meta name="keywords" content="' . htmlspecialchars($properties->getKeywords()) . '" />' . PHP_EOL;
331
		if ($properties->getCategory() > '')
332
			$html .= '	  <meta name="category" content="' . htmlspecialchars($properties->getCategory()) . '" />' . PHP_EOL;
333
		if ($properties->getCompany() > '')
334
			$html .= '	  <meta name="company" content="' . htmlspecialchars($properties->getCompany()) . '" />' . PHP_EOL;
335
		if ($properties->getManager() > '')
336
			$html .= '	  <meta name="manager" content="' . htmlspecialchars($properties->getManager()) . '" />' . PHP_EOL;
337
@@ 335-336 (lines=2) @@
332
			$html .= '	  <meta name="category" content="' . htmlspecialchars($properties->getCategory()) . '" />' . PHP_EOL;
333
		if ($properties->getCompany() > '')
334
			$html .= '	  <meta name="company" content="' . htmlspecialchars($properties->getCompany()) . '" />' . PHP_EOL;
335
		if ($properties->getManager() > '')
336
			$html .= '	  <meta name="manager" content="' . htmlspecialchars($properties->getManager()) . '" />' . PHP_EOL;
337
338
		if ($pIncludeStyles) {
339
			$html .= $this->generateStyles(true);