for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Getloy\GetloyMagentoGateway\Model;
use Getloy\GetloyMagentoGateway\Api\Data\CallbackResponseInterface;
class CallbackResponse implements CallbackResponseInterface
{
/**
* @var string
*/
protected $status;
protected $message;
* @param string $status
* @param string $message
public function __construct($status, $message)
$this->status = $status;
$this->message = $message;
}
* {@inheritDoc}
public function getStatus()
return $this->status;
public function getMessage()
return $this->message;