Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
37 | 69 | public function __construct( |
|
38 | $count = 20, |
||
39 | $fromId = null, |
||
40 | $toId = null, |
||
41 | $includeRetweets = true, |
||
42 | $trimUser = false, |
||
43 | $includeEntities = true |
||
44 | ) { |
||
45 | 69 | $this->count = $count; |
|
46 | 69 | $this->fromId = $fromId; |
|
47 | 69 | $this->toId = $toId; |
|
48 | 69 | $this->includeRetweets = $includeRetweets; |
|
49 | 69 | $this->trimUser = $trimUser; |
|
50 | 69 | $this->includeEntities = $includeEntities; |
|
51 | 69 | } |
|
52 | |||
79 |