Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
34 | 6 | public function __construct( |
|
35 | UserIdentifier $userIdentifier, |
||
36 | $count = 20, |
||
37 | $cursor = -1, |
||
38 | $skipStatus = true, |
||
39 | $includeUserEntities = false |
||
40 | ) { |
||
41 | 6 | $this->userIdentifier = $userIdentifier; |
|
42 | 6 | $this->count = $count; |
|
43 | 6 | $this->cursor = $cursor; |
|
44 | 6 | $this->skipStatus = $skipStatus; |
|
45 | 6 | $this->includeUserEntities = $includeUserEntities; |
|
46 | 6 | } |
|
47 | |||
63 |