for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace IVCalculator\Entities;
class Level
{
/**
* @var int
*/
public $level;
public $dust;
public $candy;
* @var float
public $cpScalar;
public function __construct($level, $dust, $candy, $cpScalar)
$this->level = $level;
$this->dust = $dust;
$this->candy = $candy;
$this->cpScalar = $cpScalar;
}