for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Afonso\Plotta;
class YAxisConfig extends AxisConfig
{
/**
* @var float
*/
public $min;
public $max;
public function __construct(string $name, float $min = null, float $max = null)
parent::__construct($name);
$this->min = $min;
$this->max = $max;
}