| 1 | <?php |
||
| 9 | class Input implements Node |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var float |
||
| 13 | */ |
||
| 14 | private $input; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @param float $input |
||
| 18 | */ |
||
| 19 | public function __construct(float $input = 0.0) |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @return float |
||
| 26 | */ |
||
| 27 | public function getOutput(): float |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @param float $input |
||
| 34 | */ |
||
| 35 | public function setInput(float $input) |
||
| 39 | } |
||
| 40 |