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;
/**
* Class Delivery
class Delivery
{
* @var int
private $cost;
private $days;
private $orderBefore;
* @return int
public function getCost()
return $this->cost;
}
* @param int $cost
* @return Delivery
public function setCost($cost)
$this->cost = $cost;
return $this;
public function getDays()
return $this->days;
* @param int $days
public function setDays($days)
$this->days = $days;
* @return int|null
public function getOrderBefore()
return $this->orderBefore;
* @param int|null $orderBefore
public function setOrderBefore($orderBefore)
$this->orderBefore = $orderBefore;