You are here

public function Line::__construct in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/sebastian/diff/src/Line.php \SebastianBergmann\Diff\Line::__construct()

Parameters

int $type:

string $content:

File

vendor/sebastian/diff/src/Line.php, line 41

Class

Line
@package Diff @author Sebastian Bergmann <sebastian@phpunit.de> @author Kore Nordmann <mail@kore-nordmann.de> @copyright Sebastian Bergmann <sebastian@phpunit.de> @license …

Namespace

SebastianBergmann\Diff

Code

public function __construct($type = self::UNCHANGED, $content = '') {
  $this->type = $type;
  $this->content = $content;
}