/home/techb158/ileadtechnology.com/vendor/phpunit/php-code-coverage/src/Report/Xml
NameSizeModeActions
BuildInformation.php24570644editdlrm
Coverage.php17100644editdlrm
Directory.php3680644editdlrm
Facade.php84240644editdlrm
File.php19990644editdlrm
Method.php14910644editdlrm
Node.php21500644editdlrm
Project.php23650644editdlrm
Report.php25090644editdlrm
Source.php10240644editdlrm
Tests.php16720644editdlrm
Totals.php41440644editdlrm
Unit.php27460644editdlrm
Edit: /home/techb158/ileadtechnology.com/vendor/phpunit/php-code-coverage/src/Report/Xml/Source.php (1024B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace SebastianBergmann\CodeCoverage\Report\Xml; use TheSeer\Tokenizer\NamespaceUri; use TheSeer\Tokenizer\Tokenizer; use TheSeer\Tokenizer\XMLSerializer; final class Source { /** @var \DOMElement */ private $context; public function __construct(\DOMElement $context) { $this->context = $context; } public function setSourceCode(string $source): void { $context = $this->context; $tokens = (new Tokenizer())->parse($source); $srcDom = (new XMLSerializer(new NamespaceUri($context->namespaceURI)))->toDom($tokens); $context->parentNode->replaceChild( $context->ownerDocument->importNode($srcDom->documentElement, true), $context ); } }