public function __construct($line, $reason, $search, $replacement)
 {
     parent::__construct($line, $reason);
     $this->search = $search;
     $this->replacement = $replacement;
 }
示例#2
0
 public function __construct($line, $reason, $newLine)
 {
     parent::__construct($line, $reason);
     $this->newLine = $newLine;
 }
示例#3
0
 public function __construct($sourceLine, $destinationLine, $reason)
 {
     parent::__construct($sourceLine, $reason);
     $this->destinationLine = $destinationLine;
 }