public function __construct($line, $reason, $search, $replacement) { parent::__construct($line, $reason); $this->search = $search; $this->replacement = $replacement; }
public function __construct($line, $reason, $newLine) { parent::__construct($line, $reason); $this->newLine = $newLine; }
public function __construct($sourceLine, $destinationLine, $reason) { parent::__construct($sourceLine, $reason); $this->destinationLine = $destinationLine; }