Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
30 | public function __construct( |
||
31 | array $columns = [], |
||
32 | string $innerKey, |
||
33 | string $outerKey, |
||
34 | array $primaryKeys = [] |
||
35 | ) { |
||
36 | parent::__construct($columns, $outerKey); |
||
37 | $this->innerKey = $innerKey; |
||
38 | |||
39 | //Using primary keys (if any) to de-duplicate results |
||
40 | $this->duplicateCriteria = $primaryKeys; |
||
41 | } |
||
42 | |||
65 | } |