File "Status.php"
Full Path: /home/cananyalcin/public_html/core/lib/shoplemo/php-sdk/source/Payment/Status.php
File size: 495 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Shoplemo\Payment;
use Shoplemo\Config;
use Shoplemo\Request;
class Status extends Request
{
const PATH = '/payment/status';
function __construct(Config $config)
{
parent::__construct($config, self::PATH);
}
public function execute($progress_id)
{
return parent::get($progress_id);
}
public function getResponse($object = false)
{
return parent::getResponse($object);
}
public function getError($object = false)
{
return parent::getError($object);
}
}