File manager - Edit - /home/jardides/www/Jardi-design/old/plugins/j2store/payment_paymill/library/Paymill/Models/Request/Refund.php
Back
<?php /** * -------------------------------------------------------------------------------- * Payment Plugin - Paymill * -------------------------------------------------------------------------------- * @package Joomla 2.5 - 3.x * @subpackage J2Store * @author Paymill * @copyright Copyright (c) Paymill * @license GNU/GPL license: http://www.gnu.org/licenses/gpl-2.0.html * -------------------------------------------------------------------------------- * * */ namespace Paymill\Models\Request; // No direct access defined('_JEXEC') or die('Restricted access'); /** * Refund Model * Refunds are own objects with own calls for existing transactions. * The refunded amount will be credited to the account of the client. */ class Refund extends Base { /** * @var string */ private $_amount; /** * @var string */ private $_description; /** * Creates an instance of the refund request model */ function __construct() { $this->_serviceResource = 'Refunds/'; } /** * Returns the amount * @return string */ public function getAmount() { return $this->_amount; } /** * Sets the amount * @param string $amount * @return \Paymill\Models\Request\Refund */ public function setAmount($amount) { $this->_amount = $amount; return $this; } /** * Returns the description * @return string */ public function getDescription() { return $this->_description; } /** * Sets the description * @param string $description * @return \Paymill\Models\Request\Refund */ public function setDescription($description) { $this->_description = $description; return $this; } /** * Returns an array of parameters customized for the argumented methodname * @param string $method * @return array */ public function parameterize($method) { $parameterArray = array(); switch ($method) { case 'create': $parameterArray['amount'] = $this->getAmount(); $parameterArray['description'] = $this->getDescription(); break; case 'getOne': $parameterArray['count'] = 1; $parameterArray['offset'] = 0; break; case 'getAll': $parameterArray = $this->getFilter(); break; } return $parameterArray; } }
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | Generation time: 0 |
proxy
|
phpinfo
|
Settings