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