src/Entrepreneurs/Bundle/AppBundle/Propel/EvaluationJeune.php line 14

Open in your IDE?
  1. <?php
  2. namespace Entrepreneurs\Bundle\AppBundle\Propel;
  3. use Entrepreneurs\Bundle\AppBundle\Propel\Base\EvaluationJeune as BaseEvaluationJeune;
  4. /**
  5.  * Skeleton subclass for representing a row from the 'evaluation_jeune' table.
  6.  *
  7.  * You should add additional methods to this class to meet the
  8.  * application requirements.  This class will only be generated as
  9.  * long as it does not already exist in the output directory.
  10.  */
  11. class EvaluationJeune extends BaseEvaluationJeune
  12. {
  13.     public const WOMAN 'Femme';
  14.     public const MAN 'Homme';
  15.     public const NOT_CUSTOM_GENDER = [
  16.         self::MAN,
  17.         self::WOMAN,
  18.     ];
  19. }