| 1 | <?php |
||
| 6 | class Result |
||
| 7 | { |
||
| 8 | |||
| 9 | /** |
||
| 10 | * @var ValueInterface |
||
| 11 | */ |
||
| 12 | protected $independentVariable; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @var ValueInterface |
||
| 16 | */ |
||
| 17 | protected $dependentVariable; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param ValueInterface $independentVariable |
||
| 21 | * @param ValueInterface $dependentVariable |
||
| 22 | */ |
||
| 23 | 2 | public function __construct(ValueInterface $independentVariable, ValueInterface $dependentVariable) |
|
| 28 | |||
| 29 | /** |
||
| 30 | * @return ValueInterface |
||
| 31 | */ |
||
| 32 | 2 | public function getIndependentVariable() |
|
| 36 | |||
| 37 | /** |
||
| 38 | * @return ValueInterface |
||
| 39 | */ |
||
| 40 | 2 | public function getDependentVariable() |
|
| 44 | } |