for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace ByTIC\Omnipay\Paylike\Message;
use ByTIC\Omnipay\Common\Message\Traits\DataAccessorsTrait;
use Omnipay\Common\Message\AbstractResponse as CommonAbstractResponse;
/**
* Class Response
* @package ByTIC\Omnipay\Paylike\Message
*/
abstract class AbstractResponse extends CommonAbstractResponse
{
use DataAccessorsTrait;
* @inheritdoc
public function isSuccessful()
return
isset($this->data['success'])
&& $this->data['success'];
}