| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | public function __construct($related, Model $parent, $foreignKey = null, $ownerKey = null) |
||
| 16 | { |
||
| 17 | $this->foreignKey = $foreignKey; |
||
| 18 | $this->ownerKey = $ownerKey; |
||
| 19 | $this->related = $related; |
||
| 20 | |||
| 21 | parent::__construct((new $related)->newQuery(), $parent, $foreignKey, $ownerKey); |
||
| 22 | } |
||
| 38 |