Dumplie\CustomerService\Domain\PaymentState::reject PHP Метод

reject() публичный Метод

public reject ( ) : Dumplie\CustomerService\Domain\PaymentState
Результат Dumplie\CustomerService\Domain\PaymentState
    public function reject() : PaymentState;

Usage Example

Пример #1
0
 /**
  * @throws InvalidTransitionException
  */
 public function reject()
 {
     $this->state = $this->state->reject();
     $this->wasRejectedAt = new \DateTimeImmutable();
 }
PaymentState