No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

SectionRepositoryQueryTrait.php 275B

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