for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @author fabian.hanisch
* @since 2017-07-17
*/
namespace HanischIt\KrakenApi\Call\GetTicker\Model;
* Class PriceVolumeModel
* @package HanischIt\KrakenApi\Call\GetTicker\Model
class PriceVolumeModel
{
* @var float
private $price;
private $volume;
* PriceVolumeModel constructor.
*
* @param float $price
* @param float $volume
public function __construct($price, $volume)
$this->price = $price;
$this->volume = $volume;
}
* @return float
public function getPrice()
return $this->price;
public function getVolume()
return $this->volume;