for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace ByTIC\Payments\Gateways\Providers\PlatiOnline\Message;
use ByTIC\Omnipay\PlatiOnline\Message\CompletePurchaseResponse as AbstractCompletePurchaseResponse;
use ByTIC\Payments\Gateways\Providers\AbstractGateway\Message\Traits\CompletePurchaseResponseTrait;
/**
* Class CompletePurchaseResponse
* @package ByTIC\Payments\Gateways\Providers\PlatiOnline\Message
*/
class CompletePurchaseResponse extends AbstractCompletePurchaseResponse
{
use CompletePurchaseResponseTrait;
/** @noinspection PhpMissingParentCallCommonInspection
* @return bool
protected function canProcessModel()
return true;
}
* @return []
[]
0
public function getSessionDebug()
$notification = $this->getNotification();
if ($notification instanceof \SimpleXMLElement) {
$notification
SimpleXMLElement
$objJsonDocument = json_encode($notification);
return json_decode($objJsonDocument, TRUE);
return [];