From 2f164e2c67ef4c6f33185815faee305f0545a106 Mon Sep 17 00:00:00 2001 From: Scrutinizer Auto-Fixer Date: Sat, 21 Apr 2018 13:57:52 +0000 Subject: [PATCH] Scrutinizer Auto-Fixes This commit consists of patches automatically generated for this project on https://scrutinizer-ci.com --- src/Traits/DomDocumentBuilder.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Traits/DomDocumentBuilder.php b/src/Traits/DomDocumentBuilder.php index d4d7378..3eeebfc 100644 --- a/src/Traits/DomDocumentBuilder.php +++ b/src/Traits/DomDocumentBuilder.php @@ -245,7 +245,7 @@ protected function createValidTagNameFromNumericValue($name) } if ($this->getNumericTagSuffix() !== null) { - $name = $name . (string)$this->getNumericTagSuffix() . $key; + $name = $name.(string) $this->getNumericTagSuffix().$key; } return $name; }