for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the Bukashk0zzzYmlGenerator
*
* (c) Denis Golubovskiy <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Bukashk0zzz\YmlGenerator\Model\Offer;
/**
* Class OfferParam
class OfferParam
{
* @var string
private $name;
private $unit;
private $value;
* @return string
public function getName()
return $this->name;
}
* @param string $name
* @return OfferParam
public function setName($name)
$this->name = $name;
return $this;
public function getUnit()
return $this->unit;
* @param string $unit
public function setUnit($unit)
$this->unit = $unit;
public function getValue()
return $this->value;
* @param string $value
public function setValue($value)
$this->value = $value;