/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/Method.php (1491B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace SebastianBergmann\CodeCoverage\Report\Xml; final class Method { /** * @var \DOMElement */ private $contextNode; public function __construct(\DOMElement $context, string $name) { $this->contextNode = $context; $this->setName($name); } public function setSignature(string $signature): void { $this->contextNode->setAttribute('signature', $signature); } public function setLines(string $start, ?string $end = null): void { $this->contextNode->setAttribute('start', $start); if ($end !== null) { $this->contextNode->setAttribute('end', $end); } } public function setTotals(string $executable, string $executed, string $coverage): void { $this->contextNode->setAttribute('executable', $executable); $this->contextNode->setAttribute('executed', $executed); $this->contextNode->setAttribute('coverage', $coverage); } public function setCrap(string $crap): void { $this->contextNode->setAttribute('crap', $crap); } private function setName(string $name): void { $this->contextNode->setAttribute('name', $name); } }