for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace ByTIC\Payments\Gateways\Providers\Romcard\Message;
use Paytic\Omnipay\Romcard\Message\CompletePurchaseResponse as AbstractCompletePurchaseResponse;
use ByTIC\Payments\Gateways\Providers\AbstractGateway\Message\Traits\CompletePurchaseResponseTrait;
/**
* Class CompletePurchaseResponse
* @package ByTIC\Payments\Gateways\Providers\Romcard\Message
*/
class CompletePurchaseResponse extends AbstractCompletePurchaseResponse
{
use CompletePurchaseResponseTrait;
/** @noinspection PhpMissingParentCallCommonInspection
* @return bool
protected function canProcessModel()
return true;
}