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