mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-07-25 17:13:08 +00:00
10 lines
198 B
PHP
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}";
|
|
}
|
|
}
|