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 Currency
class Currency
{
* @var string
private $id;
private $rate;
* @return string
public function getId()
return $this->id;
}
* @param string $id
* @return Currency
public function setId($id)
$this->id = $id;
return $this;
public function getRate()
return $this->rate;
* @param string $rate
public function setRate($rate)
$this->rate = $rate;