mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-07-25 17:13:08 +00:00
7 lines
193 B
PHP
7 lines
193 B
PHP
<?php
|
|
require_once 'construct_params.php';
|
|
|
|
// $point = new Point(); // PHP Fatal error: Uncaught ArgumentCountError
|
|
$point = new Point(x: 5, y: 3);
|
|
echo $point->distance(); // 5.8309518948453
|