reject() 공개 메소드

public reject ( ) : Dumplie\CustomerService\Domain\PaymentState
리턴 Dumplie\CustomerService\Domain\PaymentState
예제 #1
0
파일: Payment.php 프로젝트: dumplie/dumplie
 /**
  * @throws InvalidTransitionException
  */
 public function reject()
 {
     $this->state = $this->state->reject();
     $this->wasRejectedAt = new \DateTimeImmutable();
 }