<?php

namespace App\Entity;

use Doctrine\ORM\Mapping as ORM;

/**
 * Vente => (Diffusion de monnaie papier auprès des adhérents)
 *
 * Types de vente :
 *
 *   - COMPTOIR     =>    ADHERENTS         (Vente à un adherent)
 *   - COMPTOIR     =>    PRESTATAIRES      (Vente à un prestataire)
 *
 * @ORM\Entity
 */
abstract class Vente extends Flux
{
    /**
     * @return string
     */
    public function getParenttype(): string
    {
        return self::TYPE_VENTE;
    }
}