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