-
Notifications
You must be signed in to change notification settings - Fork 157
/
Copy pathParseXMLTrait.php
42 lines (38 loc) · 1.07 KB
/
ParseXMLTrait.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento2\Sniffs\Legacy;
use DOMDocument;
use PHP_CodeSniffer\Files\File;
use PHP_CodeSniffer\Util\Common;
trait ParseXMLTrait
{
/**
* Format the incoming XML to avoid tags split into several lines.
*
* @param File $phpcsFile
*
* @return false|string
*/
private function getFormattedXML(File $phpcsFile)
{
try {
$doc = new DomDocument('1.0');
$doc->formatOutput = true;
$doc->loadXML($phpcsFile->getTokensAsString(0, count($phpcsFile->getTokens())));
return $doc->saveXML();
} catch (\Exception $e) {
$phpcsFile->addError(
"Couldn't parse contents of '%s', check that they are in valid XML format.",
0,
'WrongXML',
[
Common::stripBasepath($phpcsFile->getFilename(), $phpcsFile->config->basepath),
]
);
return false;
}
}
}