Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 11 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
25 | 1 | public function __construct($id, $count, $content, $numberTo, $receiveTime, $numberFrom, $status) |
|
26 | { |
||
27 | 1 | $receiveTimeDT = new \DateTime(); |
|
28 | 1 | $receiveTimeDT->setTimestamp($receiveTime); |
|
29 | |||
30 | 1 | $this->id = $id; |
|
31 | 1 | $this->count = $count; |
|
32 | 1 | $this->content = $content; |
|
33 | 1 | $this->numberTo = $numberTo; |
|
34 | 1 | $this->receiveTime = $receiveTimeDT; |
|
35 | 1 | $this->numberFrom = $numberFrom; |
|
36 | 1 | $this->status = $status; |
|
37 | 1 | } |
|
38 | |||
112 |