RSS Git Download  Clone
Raw View History
Blames found: 3 Mode: php Binary: false


Hang on, we reloading big blames...
<?php namespace Git\Model; use Git\Model\Line; class Diff { protected $lines; protected $index; protected $old; protected $new; protected $file; public function addLine($line) { $this->lines[] = new Line($line); } public function getLines() { return $this->lines; } public function setIndex($index) { $this->index = $index; } public function getIndex() { return $this->index; } public function setOld($old) { $this->old = $old; } public function getOld() { return $this->old; } public function setNew($new) { $this->new = $new; } public function getNew() { return $this->new; }
public function setFile($file) { $this->file = $file; }
public function getFile() { return $this->file; } }