| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 30 | public function createForComparerAndProduct(ComparerInterface $comparer, ProductInterface $product): ComparerProductInterface |
||
| 31 | { |
||
| 32 | $comparerProduct = $this->createNew(); |
||
| 33 | |||
| 34 | $comparerProduct->setComparer($comparer); |
||
| 35 | $comparerProduct->setProduct($product); |
||
| 36 | |||
| 37 | return $comparerProduct; |
||
| 38 | } |
||
| 40 |