reject() public method

public reject ( ) : Dumplie\CustomerService\Domain\PaymentState
return Dumplie\CustomerService\Domain\PaymentState
コード例 #1
0
ファイル: Payment.php プロジェクト: dumplie/dumplie
 /**
  * @throws InvalidTransitionException
  */
 public function reject()
 {
     $this->state = $this->state->reject();
     $this->wasRejectedAt = new \DateTimeImmutable();
 }