소스 검색

Correctifs

packProduct
Guillaume 3 년 전
부모
커밋
9dd463306b
2개의 변경된 파일2개의 추가작업 그리고 24개의 파일을 삭제
  1. +0
    -18
      Repository/Reminder/ReminderRepository.php
  2. +2
    -6
      Repository/Reminder/ReminderRepositoryQuery.php

+ 0
- 18
Repository/Reminder/ReminderRepository.php 파일 보기

@@ -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 파일 보기

@@ -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…
취소
저장