Editing: Item.php
<?php /** * @author BitPay Integrations <integrations@bitpay.com> * @license http://www.opensource.org/licenses/mit-license.php MIT */ namespace BitPaySDK\Model\Subscription; class Item { protected $_description; protected $_price; protected $_quantity; public function __construct(float $price = 0.0, int $quantity = 0, string $description = "") { $this->_price = $price; $this->_quantity = $quantity; $this->_description = $description; } /** * Gets Line item description * * @return string the Line item description */ public function getDescription() { return $this->_description; } /** * Sets Line item description * * @param string $description the Line item description */ public function setDescription(string $description) { $this->_description = $description; } /** * Gets Line item unit price for the corresponding currency * * @return float the price */ public function getPrice() { return $this->_price; } /** * Sets Line item unit price for the corresponding currency * * @param float $price the price */ public function setPrice(float $price) { $this->_price = $price; } /** * Gets Line item number of units * * @return int the quantity */ public function getQuantity() { return $this->_quantity; } /** * Sets Line item number of units * * @param int $quantity the quantity */ public function setQuantity(int $quantity) { $this->_quantity = $quantity; } /** * @param array $item List of line items * @return Item */ public static function createFromArray(array $item) { $instance = new self(); foreach ($item as $key => $value) { $instance->{'_' . $key} = $value; } return $instance; } /** * Gets Item as array * * @return array Item as array */ public function toArray() { $elements = [ 'description' => $this->getDescription(), 'price' => $this->getPrice(), 'quantity' => $this->getQuantity(), ]; foreach ($elements as $key => $value) { if (empty($value)) { unset($elements[$key]); } } return $elements; } }
Save
Back