Files
php_8/methods/segment.php
2022-05-03 17:52:13 +03:00

10 lines
198 B
PHP

<?php
class Segment
{
public function __construct(public ?Point $begin, public ?Point $end) {}
public function __toString()
{
return "{$this->begin} ----- {$this->end}";
}
}