for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PimpayBundle\Model;
/**
* Class OrderItem
* @package PimpayBundle\Model
*/
class OrderItem
{
* @var string|null
private $name;
* @var float|null
private $value;
* @var integer|null
private $count;
private $weight;
private $category;
* @return string|null
public function getName()
return $this->name;
}
* @param string|null $name
* @return $this
public function setName(string $name = null)
$this->name = $name;
return $this;
* @return float|null
public function getValue()
return $this->value;
* @param float|null $value
public function setValue(float $value = null)
$this->value = $value;
* @return int|null
public function getCount()
return $this->count;
* @param int|null $count
public function setCount(int $count = null)
$this->count = $count;
public function getWeight()
return $this->weight;
* @param float|null $weight
public function setWeight(float $weight = null)
$this->weight = $weight;
public function getCategory()
return $this->category;
* @param string|null $category
public function setCategory(string $category = null)
$this->category = $category;