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 OfferOutlet
class OfferOutlet
{
* @var string
private $id;
private $inStock;
* @return string
public function getId()
return $this->id;
}
* @param string $id
* @return OfferOutlet
public function setId($id)
$this->id = $id;
return $this;
public function getInStock()
return $this->inStock;
* @param string $inStock
public function setInStock($inStock)
$this->inStock = $inStock;