reject() public méthode

public reject ( ) : Dumplie\CustomerService\Domain\PaymentState
Résultat Dumplie\CustomerService\Domain\PaymentState
Exemple #1
0
 /**
  * @throws InvalidTransitionException
  */
 public function reject()
 {
     $this->state = $this->state->reject();
     $this->wasRejectedAt = new \DateTimeImmutable();
 }