for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace floor12\DalliApi\Models;
class Item extends BaseXmlObject
{
/** @var string */
public $title;
/** @var int */
public $_quantity = 1;
/** @var float */
public $_weight;
public $_retprice;
public $_barcode;
public $_article;
/**
* @param int $quantity
* @return Item
*/
public function setQuantity(int $quantity)
$this->_quantity = $quantity;
return $this;
}
* @param float $_weight
public function setWeight(float $_weight)
$this->_weight = $_weight;
* @param int $retprice
public function setRetprice(int $retprice)
$this->_retprice = $retprice;
* @param int $_barcode
public function setBarcode(int $_barcode)
$this->_barcode = $_barcode;
* @param string $_article
public function setArticle(string $_article)
$this->_article = $_article;
* @param string $title
* @return self
public function setTitle(string $title): self
$this->title = $title;