| Conditions | 1 |
| Paths | 1 |
| Total Lines | 17 |
| Code Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 9 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 58 | 54 | public function __construct( |
|
| 59 | $timestamp, |
||
| 60 | $type, |
||
| 61 | $id, |
||
| 62 | $size, |
||
| 63 | $pos, |
||
| 64 | $flag, |
||
| 65 | $checkSum |
||
| 66 | ) { |
||
| 67 | 54 | $this->timestamp = $timestamp; |
|
| 68 | 54 | $this->type = $type; |
|
| 69 | 54 | $this->id = $id; |
|
| 70 | 54 | $this->size = $size; |
|
| 71 | 54 | $this->pos = $pos; |
|
| 72 | 54 | $this->flag = $flag; |
|
| 73 | 54 | $this->checkSum = $checkSum; |
|
| 74 | 54 | } |
|
| 75 | |||
| 159 | } |