| 1 | <?php |
||
| 6 | final class Cell implements CellInterface |
||
| 7 | { |
||
| 8 | private $position; |
||
| 9 | private $value; |
||
| 10 | private $string; |
||
| 11 | |||
| 12 | 5 | public function __construct(Position $position, $value) |
|
| 18 | |||
| 19 | 5 | public function position(): Position |
|
| 23 | |||
| 24 | /** |
||
| 25 | * {@inheritdoc} |
||
| 26 | */ |
||
| 27 | 2 | public function value() |
|
| 31 | |||
| 32 | public function __toString(): string |
||
| 36 | } |
||
| 37 |