芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/www/portal.pulsehost.co.uk/vendor/bitpay/php-client/src/Bitpay/Item.php
physical = false; } /** * @inheritdoc */ public function getCode() { return $this->code; } /** * @param string $code * @return ItemInterface */ public function setCode($code) { $this->code = $code; return $this; } /** * @inheritdoc */ public function getDescription() { return $this->description; } /** * @param string $description * @return ItemInterface */ public function setDescription($description) { $this->description = $description; return $this; } /** * @inheritdoc */ public function getPrice() { return $this->price; } /** * @param mixed $price A float, integer, or en_US formatted numeric string * @return Item */ public function setPrice($price) { if (is_string($price)) { $this->checkPriceFormat($price); } $this->price = (float)$price; return $this; } /** * @inheritdoc */ public function getQuantity() { return $this->quantity; } /** * @param integer $quantity * @return Item */ public function setQuantity($quantity) { $this->quantity = $quantity; return $this; } /** * @inheritdoc */ public function isPhysical() { return $this->physical; } /** * @param boolean $physical * @return Item */ public function setPhysical($physical) { $this->physical = (boolean)$physical; return $this; } /** * Checks the new price to include BTC * values with more than 6 decimals. * * @param string $price The price value to check * @throws \Exception */ protected function checkPriceFormat($price) { if (preg_match('/^[0-9]+?[\.,][0-9]{1,6}?$/', $price) !== 1) { throw new \Bitpay\Client\ArgumentException('[ERROR] In Item::checkPriceFormat(): Price value must be formatted as a float.'); } } }