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.

19 satır
487B

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