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