src/Entrepreneurs/Bundle/AppBundle/Propel/EffectifEntrepriseQuery.php line 7

Open in your IDE?
  1. <?php
  2. namespace Entrepreneurs\Bundle\AppBundle\Propel;
  3. use Entrepreneurs\Bundle\AppBundle\Propel\Base\EffectifEntrepriseQuery as BaseEffectifEntrepriseQuery;
  4. class EffectifEntrepriseQuery extends BaseEffectifEntrepriseQuery
  5. {
  6.     public function filterForSelect()
  7.     {
  8.         $this->filterByActif(true)
  9.             ->orderByRank();
  10.     }
  11. }