| 1 | <?php |
||
| 2 | |||
| 3 | namespace ByTIC\Omnipay\PlatiOnline\Message; |
||
| 4 | |||
| 5 | use ByTIC\Omnipay\Common\Message\Traits\HtmlResponses\ConfirmHtmlTrait; |
||
| 6 | |||
| 7 | /** |
||
| 8 | * Class CompletePurchaseResponse |
||
| 9 | * @package ByTIC\Omnipay\PlatiOnline\Message |
||
| 10 | */ |
||
| 11 | class CompletePurchaseResponse extends AbstractResponse |
||
| 12 | { |
||
| 13 | use ConfirmHtmlTrait; |
||
| 14 | use Traits\RelayResponseTrait; |
||
|
0 ignored issues
–
show
introduced
by
Loading history...
|
|||
| 15 | |||
| 16 | protected function initViewVars() |
||
| 17 | { |
||
| 18 | $this->getView()->set('message', $this->getMessage()); |
||
| 19 | } |
||
| 20 | } |
||
| 21 |