| Total Complexity | 7 |
| Total Lines | 49 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | class Change { |
||
| 8 | private $id; |
||
| 9 | private $update_id; |
||
| 10 | private $description; |
||
| 11 | private $timestamp; |
||
| 12 | private $state; |
||
| 13 | private $filename; |
||
| 14 | private $script; |
||
| 15 | |||
| 16 | public function __construct( |
||
| 17 | $id, |
||
| 18 | $update_id, |
||
| 19 | $description, |
||
| 20 | $timestamp, |
||
| 21 | $state, |
||
| 22 | $filename, |
||
| 23 | $script |
||
| 24 | ) { |
||
| 25 | $this->id = $id; |
||
| 26 | $this->update_id = $update_id; |
||
| 27 | $this->description = $description; |
||
| 28 | $this->timestamp = $timestamp; |
||
| 29 | $this->state = $state; |
||
| 30 | $this->filename = $filename; |
||
| 31 | $this->script = $script; |
||
| 32 | } |
||
| 33 | |||
| 34 | public function getUpdateId() { |
||
| 35 | return $this->update_id; |
||
| 36 | } |
||
| 37 | |||
| 38 | public function getDescription() { |
||
| 39 | return $this->description; |
||
| 40 | } |
||
| 41 | |||
| 42 | public function getTimestamp() { |
||
| 43 | return $this->timestamp; |
||
| 44 | } |
||
| 45 | |||
| 46 | public function getState() { |
||
| 47 | return $this->state; |
||
| 48 | } |
||
| 49 | |||
| 50 | public function getFilename() { |
||
| 52 | } |
||
| 53 | |||
| 54 | public function getScript() { |
||
| 56 | } |
||
| 57 | } |
||
| 58 |