Browse Source

Correctifs

packProduct
Guillaume 3 years ago
parent
commit
9dd463306b
2 changed files with 2 additions and 24 deletions
  1. +0
    -18
      Repository/Reminder/ReminderRepository.php
  2. +2
    -6
      Repository/Reminder/ReminderRepositoryQuery.php

+ 0
- 18
Repository/Reminder/ReminderRepository.php View File

@@ -1,18 +0,0 @@
<?php

namespace Lc\CaracoleBundle\Repository\Reminder;

use Lc\CaracoleBundle\Repository\RepositoryTrait;
use Lc\SovBundle\Model\Reminder\ReminderInterface;
use Lc\SovBundle\Repository\Reminder\ReminderRepository as SovReminderRepository;

/**
* @method ReminderInterface|null find($id, $lockMode = null, $lockVersion = null)
* @method ReminderInterface|null findOneBy(array $criteria, array $orderBy = null)
* @method ReminderInterface[] findAll()
* @method ReminderInterface[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
*/
class ReminderRepository extends SovReminderRepository
{
use RepositoryTrait;
}

+ 2
- 6
Repository/Reminder/ReminderRepositoryQuery.php View File

@@ -3,18 +3,14 @@
namespace Lc\CaracoleBundle\Repository\Reminder;

use Lc\CaracoleBundle\Repository\RepositoryMerchantTrait;
use Lc\SovBundle\Repository\AbstractRepositoryQuery;
use Knp\Component\Pager\PaginatorInterface;
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
use Lc\CaracoleBundle\Container\MyContainer;
use Lc\SovBundle\Repository\Reminder\ReminderRepositoryQuery as BaseReminderRepositoryQuery;
use Lc\SovBundle\Repository\Reminder\ReminderRepositoryQuery as SovReminderRepositoryQuery;

/**
* class ReminderRepositoryQuery.
*
* @author Simon Vieille <simon@deblan.fr>
*/
class ReminderRepositoryQuery extends AbstractRepositoryQuery
class ReminderRepositoryQuery extends SovReminderRepositoryQuery
{
use RepositoryMerchantTrait;
}

Loading…
Cancel
Save