From 9dd85c1e5bef58ba49619cb3e4004022198c386a Mon Sep 17 00:00:00 2001 From: Yusuf Kandemir Date: Sun, 11 Nov 2018 22:55:36 +0300 Subject: [PATCH] Some formatting --- src/MicrodataDOMElement.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/MicrodataDOMElement.php b/src/MicrodataDOMElement.php index f6e0b20..c5ddff8 100644 --- a/src/MicrodataDOMElement.php +++ b/src/MicrodataDOMElement.php @@ -134,10 +134,11 @@ class MicrodataDOMElement extends \DOMElement return $childNodes; } - public function tokenizeAttribute($attributeName) { + public function tokenizeAttribute($attributeName) + { $attribute = []; - if($this->hasAttribute($attributeName)) { + if ($this->hasAttribute($attributeName)) { $attribute = $this->tokenize($this->getAttribute($attributeName)); }