Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
11 | public function interaction(array $interactions, int $pageId, array $doneValue = []):Interaction |
||
12 | { |
||
13 | $follow = in_array('follow', $interactions); |
||
14 | $applause = in_array('applause', $interactions); |
||
15 | $done = in_array('done', $interactions); |
||
16 | return new Interaction($pageId, $follow, $applause, $done, $doneValue); |
||
17 | } |
||
33 |