Skip to content

Instantly share code, notes, and snippets.

@iluuu1994
Created November 29, 2020 19:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iluuu1994/30b46a16412858d3a96f859a2d584a21 to your computer and use it in GitHub Desktop.
Save iluuu1994/30b46a16412858d3a96f859a2d584a21 to your computer and use it in GitHub Desktop.
<?php
class Sum {
public initonly int $sum;
public function __construct(
public initonly int $lhs,
public initonly int $rhs,
) {
$this->sum = $this->lhs + $this->rhs;
}
}
$sum = new Sum(1, 2) with { sum: 4 };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment