Issues (365)

src/Message/CompletePurchaseResponse.php (1 issue)

Severity
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
The trait ByTIC\Omnipay\PlatiOnlin...aits\RelayResponseTrait requires some properties which are not provided by ByTIC\Omnipay\PlatiOnlin...ompletePurchaseResponse: $x_response_code, $x_response_reason_text, $f_order_number, $x_response_reason_code, $x_trans_id
Loading history...
15
16
    protected function initViewVars()
17
    {
18
        $this->getView()->set('message', $this->getMessage());
19
    }
20
}
21