Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. Unit.php

function Unit::setLines

File

vendor/phpunit/php-code-coverage/src/Report/Xml/Unit.php, line 28

Class

Unit
@internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage

Namespace

SebastianBergmann\CodeCoverage\Report\Xml

Code

public function setLines(int $start, int $executable, int $executed) : void {
    $this->contextNode
        ->setAttribute('start', (string) $start);
    $this->contextNode
        ->setAttribute('executable', (string) $executable);
    $this->contextNode
        ->setAttribute('executed', (string) $executed);
}
RSS feed
Powered by Drupal