Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

24 Zeilen
739B

  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() == $section) {
  12. return $productFamilySectionProperty;
  13. }
  14. }
  15. return null;
  16. }
  17. }