for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Date: 19.11.18
* Time: 20:30
*/
namespace AlecRabbit\Structures;
class Volume
{
/** @var float */
public $total = 0;
public $buy = 0;
public $sell = 0;
* @param float $total
* @return Volume
public function setTotal(float $total): Volume
$this->total = $total;
return $this;
}
* @param float $buy
public function setBuy(float $buy): Volume
$this->buy = $buy;
* @param float $sell
public function setSell(float $sell): Volume
$this->sell = $sell;