Commit 413e88c2 by Julien Jorry

Fix achat monnaie to confirm

parent 198ec0c5
......@@ -127,6 +127,8 @@ abstract class AchatMonnaieAConfirmer implements FluxInterface
*/
protected $expediteur;
protected $destinataire = null;
/**
* @var bool RECONVERTI => Validation du dépôt d'espèce/chèque/virement
* @Assert\Type("bool")
......@@ -192,6 +194,7 @@ abstract class AchatMonnaieAConfirmer implements FluxInterface
*/
public function setDestinataire($destinataire)
{
$this->destinataire = $destinataire;
return $this;
}
......@@ -200,7 +203,7 @@ abstract class AchatMonnaieAConfirmer implements FluxInterface
*/
public function getDestinataire()
{
return null;
return $this->destinataire;
}
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment