Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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. }