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

7 lines
106 B
PHP

<?php
class Point {
public function __construct(private int $x = 0, private int $y = 0)
{
}
}