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.

ProductFamilySectionPropertyRepository.php 456B

12345678910111213141516
  1. <?php
  2. namespace Lc\CaracoleBundle\Repository\Product;
  3. use App\Entity\Product\Product;
  4. use App\Entity\Product\ProductFamilySectionProperty;
  5. use Doctrine\Persistence\ManagerRegistry;
  6. use Lc\SovBundle\Repository\AbstractRepository;
  7. class ProductFamilySectionPropertyRepository extends AbstractRepository
  8. {
  9. public function __construct(ManagerRegistry $registry)
  10. {
  11. parent::__construct($registry, ProductFamilySectionProperty::class);
  12. }
  13. }