Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

13 lines
275B

  1. <?php
  2. namespace Lc\CaracoleBundle\Repository;
  3. use Lc\CaracoleBundle\Model\Section\SectionInterface;
  4. trait SectionRepositoryQueryTrait
  5. {
  6. public function filterBySection(SectionInterface $section)
  7. {
  8. return $this->andWhereSection($this->id, $section);
  9. }
  10. }