src/Entity/ParametreCentreGroupe.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ParametreCentreGroupeRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. /**
  7.  * @ORM\Entity(repositoryClass=ParametreCentreGroupeRepository::class)
  8.  */
  9. class ParametreCentreGroupe
  10. {
  11.     /**
  12.      * @ORM\Id
  13.      * @ORM\GeneratedValue
  14.      * @ORM\Column(type="integer")
  15.      */
  16.     private $id;
  17.     /**
  18.      * @ORM\Column(type="boolean")
  19.      */
  20.     private $pcg_display_creneau_dispo_bo;
  21.     /**
  22.      * @ORM\Column(type="boolean")
  23.      */
  24.     private $pcg_presta_web;
  25.     /**
  26.      * @ORM\Column(type="string", length=255, nullable=true)
  27.      */
  28.     private $pcg_url;
  29.     /**
  30.      * @ORM\Column(type="string", length=12, nullable=true)
  31.      */
  32.     private $pcg_blocage_bg_color;
  33.     /**
  34.      * @ORM\Column(type="string", length=12, nullable=true)
  35.      */
  36.     private $pcg_rdv_recurrence_bg_color;
  37.     /**
  38.      * @ORM\Column(type="text", nullable=true)
  39.      */
  40.     private $pcg_info_bandeau;
  41.     /**
  42.      * @ORM\Column(type="string", length=12, nullable=true)
  43.      */
  44.     private $pcg_color_info_paiement_text;
  45.     /**
  46.      * @ORM\Column(type="string", length=12, nullable=true)
  47.      */
  48.     private $pcg_color_info_paiement_border;
  49.     /**
  50.      * @ORM\Column(type="string", length=12, nullable=true)
  51.      */
  52.     private $pcg_color_info_paiement_bg;
  53.     /**
  54.      * @ORM\Column(type="text", nullable=true)
  55.      */
  56.     private $pcg_info_message1;
  57.     /**
  58.      * @ORM\Column(type="string", length=12, nullable=true)
  59.      */
  60.     private $pcg_info_message1_color_text;
  61.     /**
  62.      * @ORM\Column(type="string", length=12, nullable=true)
  63.      */
  64.     private $pcg_info_message1_color_border;
  65.     /**
  66.      * @ORM\Column(type="string", length=12, nullable=true)
  67.      */
  68.     private $pcg_info_message1_color_bg;
  69.     /**
  70.      * @ORM\Column(type="string", length=12, nullable=true)
  71.      */
  72.     private $pcg_info_message1_color_cligno;
  73.     /**
  74.      * @ORM\Column(type="text", nullable=true)
  75.      */
  76.     private $pcg_info_message2;
  77.     /**
  78.      * @ORM\Column(type="string", length=12, nullable=true)
  79.      */
  80.     private $pcg_info_message2_color_text;
  81.     /**
  82.      * @ORM\Column(type="string", length=12, nullable=true)
  83.      */
  84.     private $pcg_info_message2_color_border;
  85.     /**
  86.      * @ORM\Column(type="string", length=12, nullable=true)
  87.      */
  88.     private $pcg_info_message2_color_bg;
  89.     /**
  90.      * @ORM\Column(type="string", length=12, nullable=true)
  91.      */
  92.     private $pcg_info_message2_color_cligno;
  93.     /**
  94.      * @ORM\Column(type="text", nullable=true)
  95.      */
  96.     private $pcg_info_message_email;
  97.     /**
  98.      * @ORM\Column(type="string", length=255, nullable=true)
  99.      */
  100.     private $pcg_visuel_logo_nom;
  101.     /**
  102.      * @ORM\Column(type="string", length=255, nullable=true)
  103.      */
  104.     private $pcg_visuel_logo_alt;
  105.     /**
  106.      * @ORM\Column(type="string", length=255, nullable=true)
  107.      */
  108.     private $pcg_visuel_img_centre_nom;
  109.     /**
  110.      * @ORM\Column(type="text", nullable=true)
  111.      */
  112.     private $pcg_en_savoir_plus;
  113.     /**
  114.      * @ORM\Column(type="string", length=255, nullable=true)
  115.      */
  116.     private $pcg_accueil_titre;
  117.     /**
  118.      * @ORM\Column(type="text", nullable=true)
  119.      */
  120.     private $pcg_accueil_meta_description;
  121.     /**
  122.      * @ORM\Column(type="string", length=255, nullable=true)
  123.      */
  124.     private $pcg_accueil_meta_keywords;
  125.     /**
  126.      * @ORM\Column(type="string", length=255, nullable=true)
  127.      */
  128.     private $pcg_accueil_h2;
  129.     /**
  130.      * @ORM\Column(type="string", length=255, nullable=true)
  131.      */
  132.     private $Pcg_reservation_titre;
  133.     /**
  134.      * @ORM\Column(type="string", length=255, nullable=true)
  135.      */
  136.     private $Pcg_reservation_meta_description;
  137.     /**
  138.      * @ORM\Column(type="string", length=255, nullable=true)
  139.      */
  140.     private $Pcg_reservation_meta_keywords;
  141.     /**
  142.      * @ORM\Column(type="string", length=255, nullable=true)
  143.      */
  144.     private $pcg_type_visite;
  145.     /**
  146.      * @ORM\Column(type="boolean")
  147.      */
  148.     private $pcg_pyl_bo_cartouche_cal_client_first=false;
  149.     /**
  150.      * @ORM\OneToOne(targetEntity=CentreGroupe::class, cascade={"persist", "remove"}, fetch="EAGER")
  151.      * @ORM\JoinColumn(nullable=false)
  152.      */
  153.     private $centre_groupe;
  154.     /**
  155.      * @ORM\Column(type="string", length=255, nullable=true)
  156.      */
  157.     private $pcg_google_analytics;
  158.     /**
  159.      * @ORM\Column(type="string", length=255, nullable=true)
  160.      */
  161.     private $pcg_google_analytics_2;
  162.     /**
  163.      * @ORM\Column(type="string", length=255, nullable=true)
  164.      */
  165.     private $pcg_google_analytics_3;
  166.     /**
  167.      * @ORM\Column(type="string", length=255, nullable=true)
  168.      */
  169.     private $pcg_chemin_logo;
  170.     /**
  171.      * @ORM\Column(type="integer", nullable=true)
  172.      */
  173.     private $pcg_taille_logo;
  174.     /**
  175.      * @ORM\Column(type="string", length=255, nullable=true)
  176.      */
  177.     private $pcg_url2;
  178.     /**
  179.      * @ORM\Column(type="time", nullable=true)
  180.      */
  181.     private $pcg_heure_debut_calendar;
  182.     /**
  183.      * @ORM\Column(type="time", nullable=true)
  184.      */
  185.     private $pcg_heure_fin_calendar;
  186.     /**
  187.      * @ORM\Column(type="boolean")
  188.      */
  189.     private $pcg_info_bulle;
  190.     /**
  191.      * @ORM\Column(type="boolean")
  192.      */
  193.     private $pcg_redirect_calendar;
  194.     /**
  195.      * @ORM\Column(type="boolean", nullable=true)
  196.      */
  197.     private $pcg_rdv_client_not_honored;
  198.     /**
  199.      * @ORM\Column(type="string", length=255, nullable=true)
  200.      */
  201.     private $pcg_mediateur_nom;
  202.     /**
  203.      * @ORM\Column(type="string", length=255, nullable=true)
  204.      */
  205.     private $pcg_mediateur_site;
  206.     /**
  207.      * @ORM\Column(type="text", nullable=true)
  208.      */
  209.     private $pcg_mediateur_adresse;
  210.     public function getId(): ?int
  211.     {
  212.         return $this->id;
  213.     }
  214.     public function isPcgDisplayCreneauDispoBo(): ?bool
  215.     {
  216.         return $this->pcg_display_creneau_dispo_bo;
  217.     }
  218.     public function setPcgDisplayCreneauDispoBo(bool $pcg_display_creneau_dispo_bo): self
  219.     {
  220.         $this->pcg_display_creneau_dispo_bo $pcg_display_creneau_dispo_bo;
  221.         return $this;
  222.     }
  223.     public function isPcgPrestaWeb(): ?bool
  224.     {
  225.         return $this->pcg_presta_web;
  226.     }
  227.     public function setPcgPrestaWeb(bool $pcg_presta_web): self
  228.     {
  229.         $this->pcg_presta_web $pcg_presta_web;
  230.         return $this;
  231.     }
  232.     public function getPcgUrl(): ?string
  233.     {
  234.         return $this->pcg_url;
  235.     }
  236.     public function setPcgUrl(string $pcg_url): self
  237.     {
  238.         $this->pcg_url $pcg_url;
  239.         return $this;
  240.     }
  241.     public function getPcgBlocageBgColor(): ?string
  242.     {
  243.         return $this->pcg_blocage_bg_color;
  244.     }
  245.     public function setPcgBlocageBgColor(?string $pcg_blocage_bg_color): self
  246.     {
  247.         $this->pcg_blocage_bg_color $pcg_blocage_bg_color;
  248.         return $this;
  249.     }
  250.     public function getPcgRdvRecurrenceBgColor(): ?string
  251.     {
  252.         return $this->pcg_rdv_recurrence_bg_color;
  253.     }
  254.     public function setPcgRdvRecurrenceBgColor(?string $pcg_rdv_recurrence_bg_color): self
  255.     {
  256.         $this->pcg_rdv_recurrence_bg_color $pcg_rdv_recurrence_bg_color;
  257.         return $this;
  258.     }
  259.     public function getPcgInfoBandeau(): ?string
  260.     {
  261.         return $this->pcg_info_bandeau;
  262.     }
  263.     public function setPcgInfoBandeau(?string $pcg_info_bandeau): self
  264.     {
  265.         $this->pcg_info_bandeau $pcg_info_bandeau;
  266.         return $this;
  267.     }
  268.     public function getPcgColorInfoPaiementText(): ?string
  269.     {
  270.         return $this->pcg_color_info_paiement_text;
  271.     }
  272.     public function setPcgColorInfoPaiementText(?string $pcg_color_info_paiement_text): self
  273.     {
  274.         $this->pcg_color_info_paiement_text $pcg_color_info_paiement_text;
  275.         return $this;
  276.     }
  277.     public function getPcgColorInfoPaiementBorder(): ?string
  278.     {
  279.         return $this->pcg_color_info_paiement_border;
  280.     }
  281.     public function setPcgColorInfoPaiementBorder(?string $pcg_color_info_paiement_border): self
  282.     {
  283.         $this->pcg_color_info_paiement_border $pcg_color_info_paiement_border;
  284.         return $this;
  285.     }
  286.     public function getPcgColorInfoPaiementBg(): ?string
  287.     {
  288.         return $this->pcg_color_info_paiement_bg;
  289.     }
  290.     public function setPcgColorInfoPaiementBg(?string $pcg_color_info_paiement_bg): self
  291.     {
  292.         $this->pcg_color_info_paiement_bg $pcg_color_info_paiement_bg;
  293.         return $this;
  294.     }
  295.     public function getPcgInfoMessage1(): ?string
  296.     {
  297.         return $this->pcg_info_message1;
  298.     }
  299.     public function setPcgInfoMessage1(?string $pcg_info_message1): self
  300.     {
  301.         $this->pcg_info_message1 $pcg_info_message1;
  302.         return $this;
  303.     }
  304.     public function getPcgInfoMessage1ColorText(): ?string
  305.     {
  306.         return $this->pcg_info_message1_color_text;
  307.     }
  308.     public function setPcgInfoMessage1ColorText(?string $pcg_info_message1_color_text): self
  309.     {
  310.         $this->pcg_info_message1_color_text $pcg_info_message1_color_text;
  311.         return $this;
  312.     }
  313.     public function getPcgInfoMessage1ColorBorder(): ?string
  314.     {
  315.         return $this->pcg_info_message1_color_border;
  316.     }
  317.     public function setPcgInfoMessage1ColorBorder(?string $pcg_info_message1_color_border): self
  318.     {
  319.         $this->pcg_info_message1_color_border $pcg_info_message1_color_border;
  320.         return $this;
  321.     }
  322.     public function getPcgInfoMessage1ColorBg(): ?string
  323.     {
  324.         return $this->pcg_info_message1_color_bg;
  325.     }
  326.     public function setPcgInfoMessage1ColorBg(?string $pcg_info_message1_color_bg): self
  327.     {
  328.         $this->pcg_info_message1_color_bg $pcg_info_message1_color_bg;
  329.         return $this;
  330.     }
  331.     public function getPcgInfoMessage1ColorCligno(): ?string
  332.     {
  333.         return $this->pcg_info_message1_color_cligno;
  334.     }
  335.     public function setPcgInfoMessage1ColorCligno(?string $pcg_info_message1_color_cligno): self
  336.     {
  337.         $this->pcg_info_message1_color_cligno $pcg_info_message1_color_cligno;
  338.         return $this;
  339.     }
  340.     public function getPcgInfoMessage2(): ?string
  341.     {
  342.         return $this->pcg_info_message2;
  343.     }
  344.     public function setPcgInfoMessage2(?string $pcg_info_message2): self
  345.     {
  346.         $this->pcg_info_message2 $pcg_info_message2;
  347.         return $this;
  348.     }
  349.     public function getPcgInfoMessage2ColorText(): ?string
  350.     {
  351.         return $this->pcg_info_message2_color_text;
  352.     }
  353.     public function setPcgInfoMessage2ColorText(?string $pcg_info_message2_color_text): self
  354.     {
  355.         $this->pcg_info_message2_color_text $pcg_info_message2_color_text;
  356.         return $this;
  357.     }
  358.     public function getPcgInfoMessage2ColorBorder(): ?string
  359.     {
  360.         return $this->pcg_info_message2_color_border;
  361.     }
  362.     public function setPcgInfoMessage2ColorBorder(?string $pcg_info_message2_color_border): self
  363.     {
  364.         $this->pcg_info_message2_color_border $pcg_info_message2_color_border;
  365.         return $this;
  366.     }
  367.     public function getPcgInfoMessage2ColorBg(): ?string
  368.     {
  369.         return $this->pcg_info_message2_color_bg;
  370.     }
  371.     public function setPcgInfoMessage2ColorBg(?string $pcg_info_message2_color_bg): self
  372.     {
  373.         $this->pcg_info_message2_color_bg $pcg_info_message2_color_bg;
  374.         return $this;
  375.     }
  376.     public function getPcgInfoMessage2ColorCligno(): ?string
  377.     {
  378.         return $this->pcg_info_message2_color_cligno;
  379.     }
  380.     public function setPcgInfoMessage2ColorCligno(?string $pcg_info_message2_color_cligno): self
  381.     {
  382.         $this->pcg_info_message2_color_cligno $pcg_info_message2_color_cligno;
  383.         return $this;
  384.     }
  385.     public function getPcgInfoMessageEmail(): ?string
  386.     {
  387.         return $this->pcg_info_message_email;
  388.     }
  389.     public function setPcgInfoMessageEmail(string $pcg_info_message_email): self
  390.     {
  391.         $this->pcg_info_message_email $pcg_info_message_email;
  392.         return $this;
  393.     }
  394.     public function getPcgVisuelLogoNom(): ?string
  395.     {
  396.         return $this->pcg_visuel_logo_nom;
  397.     }
  398.     public function setPcgVisuelLogoNom(?string $pcg_visuel_logo_nom): self
  399.     {
  400.         $this->pcg_visuel_logo_nom $pcg_visuel_logo_nom;
  401.         return $this;
  402.     }
  403.     public function getPcgVisuelLogoAlt(): ?string
  404.     {
  405.         return $this->pcg_visuel_logo_alt;
  406.     }
  407.     public function setPcgVisuelLogoAlt(?string $pcg_visuel_logo_alt): self
  408.     {
  409.         $this->pcg_visuel_logo_alt $pcg_visuel_logo_alt;
  410.         return $this;
  411.     }
  412.     public function getPcgVisuelImgCentreNom(): ?string
  413.     {
  414.         return $this->pcg_visuel_img_centre_nom;
  415.     }
  416.     public function setPcgVisuelImgCentreNom(?string $pcg_visuel_img_centre_nom): self
  417.     {
  418.         $this->pcg_visuel_img_centre_nom $pcg_visuel_img_centre_nom;
  419.         return $this;
  420.     }
  421.     public function getPcgEnSavoirPlus(): ?string
  422.     {
  423.         return $this->pcg_en_savoir_plus;
  424.     }
  425.     public function setPcgEnSavoirPlus(?string $pcg_en_savoir_plus): self
  426.     {
  427.         $this->pcg_en_savoir_plus $pcg_en_savoir_plus;
  428.         return $this;
  429.     }
  430.     public function getPcgAccueilTitre(): ?string
  431.     {
  432.         return $this->pcg_accueil_titre;
  433.     }
  434.     public function setPcgAccueilTitre(string $pcg_accueil_titre): self
  435.     {
  436.         $this->pcg_accueil_titre $pcg_accueil_titre;
  437.         return $this;
  438.     }
  439.     public function getPcgAccueilMetaDescription(): ?string
  440.     {
  441.         return $this->pcg_accueil_meta_description;
  442.     }
  443.     public function setPcgAccueilMetaDescription(?string $pcg_accueil_meta_description): self
  444.     {
  445.         $this->pcg_accueil_meta_description $pcg_accueil_meta_description;
  446.         return $this;
  447.     }
  448.     public function getPcgAccueilMetaKeywords(): ?string
  449.     {
  450.         return $this->pcg_accueil_meta_keywords;
  451.     }
  452.     public function setPcgAccueilMetaKeywords(string $pcg_accueil_meta_keywords): self
  453.     {
  454.         $this->pcg_accueil_meta_keywords $pcg_accueil_meta_keywords;
  455.         return $this;
  456.     }
  457.     public function getPcgAccueilH2(): ?string
  458.     {
  459.         return $this->pcg_accueil_h2;
  460.     }
  461.     public function setPcgAccueilH2(string $pcg_accueil_h2): self
  462.     {
  463.         $this->pcg_accueil_h2 $pcg_accueil_h2;
  464.         return $this;
  465.     }
  466.     public function getPcgReservationTitre(): ?string
  467.     {
  468.         return $this->Pcg_reservation_titre;
  469.     }
  470.     public function setPcgReservationTitre(?string $Pcg_reservation_titre): self
  471.     {
  472.         $this->Pcg_reservation_titre $Pcg_reservation_titre;
  473.         return $this;
  474.     }
  475.     public function getPcgReservationMetaDescription(): ?string
  476.     {
  477.         return $this->Pcg_reservation_meta_description;
  478.     }
  479.     public function setPcgReservationMetaDescription(?string $Pcg_reservation_meta_description): self
  480.     {
  481.         $this->Pcg_reservation_meta_description $Pcg_reservation_meta_description;
  482.         return $this;
  483.     }
  484.     public function getPcgReservationMetaKeywords(): ?string
  485.     {
  486.         return $this->Pcg_reservation_meta_keywords;
  487.     }
  488.     public function setPcgReservationMetaKeywords(?string $Pcg_reservation_meta_keywords): self
  489.     {
  490.         $this->Pcg_reservation_meta_keywords $Pcg_reservation_meta_keywords;
  491.         return $this;
  492.     }
  493.     public function getPcgTypeVisite(): ?string
  494.     {
  495.         return $this->pcg_type_visite;
  496.     }
  497.     public function setPcgTypeVisite(string $pcg_type_visite): self
  498.     {
  499.         $this->pcg_type_visite $pcg_type_visite;
  500.         return $this;
  501.     }
  502.     public function isPcgPylBoCartoucheCalClientFirst(): ?bool
  503.     {
  504.         return $this->pcg_pyl_bo_cartouche_cal_client_first;
  505.     }
  506.     public function setPcgPylBoCartoucheCalClientFirst(bool $pcg_pyl_bo_cartouche_cal_client_first): self
  507.     {
  508.         $this->pcg_pyl_bo_cartouche_cal_client_first $pcg_pyl_bo_cartouche_cal_client_first;
  509.         return $this;
  510.     }
  511.     public function getCentreGroupe(): ?CentreGroupe
  512.     {
  513.         return $this->centre_groupe;
  514.     }
  515.     public function setCentreGroupe(CentreGroupe $centre_groupe): self
  516.     {
  517.         $this->centre_groupe $centre_groupe;
  518.         return $this;
  519.     }
  520.     public function getPcgGoogleAnalytics(): ?string
  521.     {
  522.         return $this->pcg_google_analytics;
  523.     }
  524.     public function setPcgGoogleAnalytics(?string $pcg_google_analytics): self
  525.     {
  526.         $this->pcg_google_analytics $pcg_google_analytics;
  527.         return $this;
  528.     }
  529.     public function getPcgCheminLogo(): ?string
  530.     {
  531.         return $this->pcg_chemin_logo;
  532.     }
  533.     public function setPcgCheminLogo(?string $pcg_chemin_logo): self
  534.     {
  535.         $this->pcg_chemin_logo $pcg_chemin_logo;
  536.         return $this;
  537.     }
  538.     public function getPcgTailleLogo(): ?int
  539.     {
  540.         return $this->pcg_taille_logo;
  541.     }
  542.     public function setPcgTailleLogo(?int $pcg_taille_logo): self
  543.     {
  544.         $this->pcg_taille_logo $pcg_taille_logo;
  545.         return $this;
  546.     }
  547.     public function getPcgUrl2(): ?string
  548.     {
  549.         return $this->pcg_url2;
  550.     }
  551.     public function setPcgUrl2(?string $pcg_url2): self
  552.     {
  553.         $this->pcg_url2 $pcg_url2;
  554.         return $this;
  555.     }
  556.     public function getPcgHeureDebutCalendar(): ?\DateTimeInterface
  557.     {
  558.         return $this->pcg_heure_debut_calendar;
  559.     }
  560.     public function setPcgHeureDebutCalendar(?\DateTimeInterface $pcg_heure_debut_calendar): self
  561.     {
  562.         $this->pcg_heure_debut_calendar $pcg_heure_debut_calendar;
  563.         return $this;
  564.     }
  565.     public function getPcgHeureFinCalendar(): ?\DateTimeInterface
  566.     {
  567.         return $this->pcg_heure_fin_calendar;
  568.     }
  569.     public function setPcgHeureFinCalendar(?\DateTimeInterface $pcg_heure_fin_calendar): self
  570.     {
  571.         $this->pcg_heure_fin_calendar $pcg_heure_fin_calendar;
  572.         return $this;
  573.     }
  574.     public function isPcgInfoBulle(): ?bool
  575.     {
  576.         return $this->pcg_info_bulle;
  577.     }
  578.     public function setPcgInfoBulle(bool $pcg_info_bulle): self
  579.     {
  580.         $this->pcg_info_bulle $pcg_info_bulle;
  581.         return $this;
  582.     }
  583.     public function isPcgRedirectCalendar(): ?bool
  584.     {
  585.         return $this->pcg_redirect_calendar;
  586.     }
  587.     public function setPcgRedirectCalendar(bool $pcg_redirect_calendar): self
  588.     {
  589.         $this->pcg_redirect_calendar $pcg_redirect_calendar;
  590.         return $this;
  591.     }
  592.     public function isPcgRdvClientNotHonored(): ?bool
  593.     {
  594.         return $this->pcg_rdv_client_not_honored;
  595.     }
  596.     public function setPcgRdvClientNotHonored(?bool $pcg_rdv_client_not_honored): self
  597.     {
  598.         $this->pcg_rdv_client_not_honored $pcg_rdv_client_not_honored;
  599.         return $this;
  600.     }
  601.     /**
  602.      * @return mixed
  603.      */
  604.     public function getPcgGoogleAnalytics2()
  605.     {
  606.         return $this->pcg_google_analytics_2;
  607.     }
  608.     /**
  609.      * @param mixed $pcg_google_analytics_2
  610.      */
  611.     public function setPcgGoogleAnalytics2($pcg_google_analytics_2): void
  612.     {
  613.         $this->pcg_google_analytics_2 $pcg_google_analytics_2;
  614.     }
  615.     /**
  616.      * @return mixed
  617.      */
  618.     public function getPcgGoogleAnalytics3()
  619.     {
  620.         return $this->pcg_google_analytics_3;
  621.     }
  622.     /**
  623.      * @param mixed $pcg_google_analytics_3
  624.      */
  625.     public function setPcgGoogleAnalytics3($pcg_google_analytics_3): void
  626.     {
  627.         $this->pcg_google_analytics_3 $pcg_google_analytics_3;
  628.     }
  629.     public function getPcgMediateurNom(): ?string
  630.     {
  631.         return $this->pcg_mediateur_nom;
  632.     }
  633.     public function setPcgMediateurNom(?string $pcg_mediateur_nom): self
  634.     {
  635.         $this->pcg_mediateur_nom $pcg_mediateur_nom;
  636.         return $this;
  637.     }
  638.     public function getPcgMediateurSite(): ?string
  639.     {
  640.         return $this->pcg_mediateur_site;
  641.     }
  642.     public function setPcgMediateurSite(?string $pcg_mediateur_site): self
  643.     {
  644.         $this->pcg_mediateur_site $pcg_mediateur_site;
  645.         return $this;
  646.     }
  647.     public function getPcgMediateurAdresse(): ?string
  648.     {
  649.         return $this->pcg_mediateur_adresse;
  650.     }
  651.     public function setPcgMediateurAdresse(?string $pcg_mediateur_adresse): self
  652.     {
  653.         $this->pcg_mediateur_adresse $pcg_mediateur_adresse;
  654.         return $this;
  655.     }
  656. }