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 OfferCondition
class OfferCondition
{
* @var string
private $type;
private $reasonText;
* @return string
public function getReasonText()
return $this->reasonText;
}
public function getType()
return $this->type;
* Description text for the reason for markdowns
* @param string $reasonText
* @return $this
public function setReasonText($reasonText)
$this->reasonText = $reasonText;
return $this;
* Set product condition
* @param string $type
public function setType($type)
$this->type = $type;