Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
33 | 69 | public function __construct( |
|
34 | $count = 20, |
||
35 | $fromId = null, |
||
36 | $toId = null, |
||
37 | $includeEntities = true, |
||
38 | $skipStatus = false |
||
39 | ) { |
||
40 | 69 | $this->count = $count; |
|
41 | 69 | $this->fromId = $fromId; |
|
42 | 69 | $this->toId = $toId; |
|
43 | 69 | $this->includeEntities = $includeEntities; |
|
44 | 69 | $this->skipStatus = $skipStatus; |
|
45 | 69 | } |
|
46 | |||
72 |