for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace MachineLearning\Domain\Model;
class Result
{
/**
* @var ValueInterface
*/
protected $independentVariable;
protected $dependentVariable;
* @param ValueInterface $independentVariable
* @param ValueInterface $dependentVariable
public function __construct(ValueInterface $independentVariable, ValueInterface $dependentVariable)
$this->independentVariable = $independentVariable;
$this->dependentVariable = $dependentVariable;
}
* @return ValueInterface
public function getIndependentVariable()
return $this->independentVariable;
public function getDependentVariable()
return $this->dependentVariable;