mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-06 11:10:42 +00:00
11 lines
183 B
PHP
11 lines
183 B
PHP
<?php
|
|
class Point
|
|
{
|
|
public function __construct(public int $x = 0, public int $y = 0) {}
|
|
|
|
public function __toString()
|
|
{
|
|
return "({$this->x},{$this->y})";
|
|
}
|
|
}
|