Parcourir la source

ProductFamilySectionPropertySolver : correctif comparaison objet Section

develop
Guillaume Bourgeois il y a 2 ans
Parent
révision
e020771ec2
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      Solver/Product/ProductFamilySectionPropertySolver.php

+ 1
- 1
Solver/Product/ProductFamilySectionPropertySolver.php Voir le fichier

@@ -12,7 +12,7 @@ class ProductFamilySectionPropertySolver
public function getProductFamilySectionProperty(ProductFamilyInterface $productFamily, SectionInterface $section):? ProductFamilySectionPropertyInterface
{
foreach ($productFamily->getProductFamilySectionProperties() as $productFamilySectionProperty) {
if ($productFamilySectionProperty->getSection() == $section) {
if ($productFamilySectionProperty->getSection() === $section) {
return $productFamilySectionProperty;
}
}

Chargement…
Annuler
Enregistrer