You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
535B

  1. <?php
  2. namespace Lc\CaracoleBundle\Factory\Product;
  3. use App\Entity\Product\QualityLabel;
  4. use Lc\CaracoleBundle\Container\Product\QualityLabelContainer;
  5. use Lc\CaracoleBundle\Model\Product\QualityLabelInterface;
  6. use Lc\SovBundle\Factory\AbstractFactory;
  7. class QualityLabelFactory extends AbstractFactory
  8. {
  9. public function create(): QualityLabelInterface
  10. {
  11. $class = QualityLabelContainer::getEntityFqcn();
  12. $qualityLabel = new $class;
  13. $qualityLabel->setStatus(1);
  14. return $qualityLabel;
  15. }
  16. }