選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

26 行
759B

  1. <?php
  2. namespace Lc\CaracoleBundle\Solver\Product;
  3. use Lc\CaracoleBundle\Model\Product\ProductFamilyInterface;
  4. use Lc\CaracoleBundle\Model\Product\ProductFamilySectionPropertyInterface;
  5. use Lc\CaracoleBundle\Model\Section\SectionInterface;
  6. class ProductFamilySectionPropertySolver
  7. {
  8. public function getProductFamilySectionProperty(ProductFamilyInterface $productFamily, SectionInterface $section):? ProductFamilySectionPropertyInterface
  9. {
  10. foreach ($productFamily->getProductFamilySectionProperties() as $productFamilySectionProperty) {
  11. if ($productFamilySectionProperty->getSection()->getId() == $section->getId()) {
  12. return $productFamilySectionProperty;
  13. }
  14. }
  15. return null;
  16. }
  17. }