Skip to content

Commit 155eb2c

Browse files
committed
Fixed Static Test Failures
1 parent 7f92f20 commit 155eb2c

File tree

1 file changed

+7
-3
lines changed
  • lib/internal/Magento/Framework/View/Model/Layout

1 file changed

+7
-3
lines changed

lib/internal/Magento/Framework/View/Model/Layout/Merge.php

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
3-
* Copyright © Magento, Inc. All rights reserved.
4-
* See COPYING.txt for license details.
3+
* Copyright 2011 Adobe
4+
* All Rights Reserved.
55
*/
66
namespace Magento\Framework\View\Model\Layout;
77

@@ -572,7 +572,11 @@ protected function _loadXmlString($xmlString)
572572
*/
573573
protected function _safeLoadXmlString($xmlString)
574574
{
575-
return simplexml_load_string($xmlString, \Magento\Framework\View\Layout\Element::class, LIBXML_NOWARNING | LIBXML_NOERROR);
575+
return simplexml_load_string(
576+
$xmlString,
577+
\Magento\Framework\View\Layout\Element::class,
578+
LIBXML_NOWARNING | LIBXML_NOERROR
579+
);
576580
}
577581

578582
/**

0 commit comments

Comments
 (0)