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